BigW Consortium Gitlab

20160705055809_remove_developers_can_push_from_protected_branches.rb 565 Bytes
Newer Older
1 2 3 4
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class RemoveDevelopersCanPushFromProtectedBranches < ActiveRecord::Migration
5 6 7 8 9 10 11 12
  include Gitlab::Database::MigrationHelpers

  # This is only required for `#down`
  disable_ddl_transaction!

  DOWNTIME = false

  def up
13 14
    remove_column :protected_branches, :developers_can_push, :boolean
  end
15 16

  def down
17
    add_column_with_default(:protected_branches, :developers_can_push, :boolean, default: false, allow_null: false)
18
  end
19
end