summaryrefslogtreecommitdiff
path: root/db/migrate/20160705055809_remove_developers_can_push_from_protected_branches.rb
blob: 058bd539e65c8d9e580d5763939a81dddf5bffec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# rubocop:disable Migration/RemoveColumn
# 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
  include Gitlab::Database::MigrationHelpers

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

  DOWNTIME = false

  def up
    remove_column :protected_branches, :developers_can_push, :boolean
  end

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