summaryrefslogtreecommitdiff
path: root/db/migrate/20220401110443_add_on_hold_until_column_for_batched_migration.rb
blob: 4771b50d566d568a1cb38f6187473306abe848c9 (plain)
1
2
3
4
5
6
7
8
# 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