Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20150327122227_add_public_to_key.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 58d8c16476f70a8fc5ecb4f52bac2cdb485f8662 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddPublicToKey < ActiveRecord::Migration[4.2]
  def change
    add_column :keys, :public, :boolean, default: false, null: false
  end
end