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

8 lines
226 B
Ruby

# 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