summaryrefslogtreecommitdiff
path: root/db/migrate/20150327122227_add_public_to_key.rb
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