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: 6ffbf4cda193e41c239c0cbeb7d995f624ffc1b7 (plain)
1
2
3
4
5
class AddPublicToKey < ActiveRecord::Migration
  def change
    add_column :keys, :public, :boolean, default: false, null: false
  end
end