2018-05-29 05:51:43 -04:00
|
|
|
# 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)
|
2018-07-25 04:59:23 -04:00
|
|
|
# rubocop:disable Migration/UpdateLargeTable
|
2018-05-29 05:51:43 -04:00
|
|
|
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
|