summaryrefslogtreecommitdiff
path: root/db/migrate/20180515005612_add_squash_to_merge_requests.rb
blob: f526b45bd4b1fed2b9dbb4277809781cd87c79a3 (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 AddSquashToMergeRequests < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers
  disable_ddl_transaction!

  DOWNTIME = false

  def up
    unless column_exists?(:merge_requests, :squash)
      add_column_with_default :merge_requests, :squash, :boolean, default: false, allow_null: false
    end
  end

  def down
    remove_column :merge_requests, :squash if column_exists?(:merge_requests, :squash)
  end
end