summaryrefslogtreecommitdiff
path: root/db/migrate/20220321150028_add_started_at_to_batched_background_migrations_table.rb
blob: 38a2c4de2f9444a4afb27eb0d1453827e6ad1c73 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddStartedAtToBatchedBackgroundMigrationsTable < Gitlab::Database::Migration[1.0]
  def change
    add_column :batched_background_migrations, :started_at, :datetime_with_timezone
  end
end