summaryrefslogtreecommitdiff
path: root/db/migrate/20160705055809_remove_developers_can_push_from_protected_branches.rb
blob: f563f660ddf301069ba103662892cdcc7bc8d8b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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, null: false)
  end
end