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

14 lines
274 B
Ruby
Raw Normal View History

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