gitlab-org--gitlab-foss/db/post_migrate/20170502070007_enable_auto_...

16 lines
302 B
Ruby
Raw Normal View History

class EnableAutoCancelPendingPipelinesForAll < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
disable_ddl_transaction!
DOWNTIME = false
def up
update_column_in_batches(:projects, :auto_cancel_pending_pipelines, 1)
end
def down
# Nothing we can do!
end
end