summaryrefslogtreecommitdiff
path: root/db/migrate/20220321150028_add_started_at_to_batched_background_migrations_table.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20220321150028_add_started_at_to_batched_background_migrations_table.rb')
-rw-r--r--db/migrate/20220321150028_add_started_at_to_batched_background_migrations_table.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/db/migrate/20220321150028_add_started_at_to_batched_background_migrations_table.rb b/db/migrate/20220321150028_add_started_at_to_batched_background_migrations_table.rb
new file mode 100644
index 00000000000..38a2c4de2f9
--- /dev/null
+++ b/db/migrate/20220321150028_add_started_at_to_batched_background_migrations_table.rb
@@ -0,0 +1,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