debian-mirror-gitlab/db/migrate/20220401110443_add_on_hold_until_column_for_batched_migration.rb
2022-06-21 17:19:12 +05:30

9 lines
284 B
Ruby

# frozen_string_literal: true
class AddOnHoldUntilColumnForBatchedMigration < Gitlab::Database::Migration[1.0]
def change
add_column :batched_background_migrations, :on_hold_until, :timestamptz,
comment: 'execution of this migration is on hold until this time'
end
end