summaryrefslogtreecommitdiff
path: root/db/migrate/20210406140057_add_total_tuple_count_to_batched_migrations.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20210406140057_add_total_tuple_count_to_batched_migrations.rb')
-rw-r--r--db/migrate/20210406140057_add_total_tuple_count_to_batched_migrations.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/20210406140057_add_total_tuple_count_to_batched_migrations.rb b/db/migrate/20210406140057_add_total_tuple_count_to_batched_migrations.rb
deleted file mode 100644
index 32b5f27a577..00000000000
--- a/db/migrate/20210406140057_add_total_tuple_count_to_batched_migrations.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# frozen_string_literal: true
-
-class AddTotalTupleCountToBatchedMigrations < ActiveRecord::Migration[6.0]
- DOWNTIME = false
-
- def up
- add_column :batched_background_migrations, :total_tuple_count, :bigint
- end
-
- def down
- remove_column :batched_background_migrations, :total_tuple_count
- end
-end