Commit 52c8b9da authored by Grzegorz Bizon's avatar Grzegorz Bizon

Use migration helper to prevent downtime migration

parent 4cc77c3b
class AddRunUntaggedToCiRunner < ActiveRecord::Migration class AddRunUntaggedToCiRunner < ActiveRecord::Migration
## include Gitlab::Database::MigrationHelpers
# Downtime expected! disable_ddl_transaction!
#
# This migration will cause downtime due to exclusive lock def up
# caused by the default value. add_column_with_default(:ci_runners, :run_untagged, :boolean,
# default: true, allow_null: false)
def change end
add_column :ci_runners, :run_untagged, :boolean, default: true, null: false
def down
remove_column(:ci_runners, :run_untagged)
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment