Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20141126120926_add_merge_request_rebase_enabled_to_projects.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b9d8a5cb4359d445691c884bd0f09faf7d59cb8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# rubocop:disable all
class AddMergeRequestRebaseEnabledToProjects < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  # Set this constant to true if this migration requires downtime.
  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_column_with_default(:projects, :merge_requests_rebase_enabled, :boolean, default: false)
  end

  def down
    remove_column(:projects, :merge_requests_rebase_enabled)
  end
end