summaryrefslogtreecommitdiff
path: root/db/post_migrate/20171215121259_remove_can_push_from_keys.rb
blob: fc4045a383d1f41e0e77d683e92124e6b0a2907f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class RemoveCanPushFromKeys < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false
  disable_ddl_transaction!

  def up
    remove_column :keys, :can_push
  end

  def down
    add_column_with_default :keys, :can_push, :boolean, default: false, allow_null: false
  end
end