summaryrefslogtreecommitdiff
path: root/db/migrate/20201214000000_change_mr_allow_maintainer_to_push_default.rb
blob: 0d97d54f3e4a0a486796c1498aaee868a152c772 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class ChangeMrAllowMaintainerToPushDefault < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    with_lock_retries do
      change_column_default :merge_requests, :allow_maintainer_to_push, from: nil, to: true
    end
  end

  def down
    with_lock_retries do
      change_column_default :merge_requests, :allow_maintainer_to_push, from: true, to: nil
    end
  end
end