summaryrefslogtreecommitdiff
path: root/db/migrate/20210331125111_add_default_target_project.rb
blob: 1a2c5ccca7de72e2013c3ffce888eaf07bdda483 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

class AddDefaultTargetProject < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  def up
    with_lock_retries do
      add_column :project_settings, :mr_default_target_self, :boolean, default: false, null: false
    end
  end

  def down
    with_lock_retries do
      remove_column :project_settings, :mr_default_target_self
    end
  end
end