Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20230201012846_backfill_todos_note_id_for_bigint_conversion.rb')
-rw-r--r--db/post_migrate/20230201012846_backfill_todos_note_id_for_bigint_conversion.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/db/post_migrate/20230201012846_backfill_todos_note_id_for_bigint_conversion.rb b/db/post_migrate/20230201012846_backfill_todos_note_id_for_bigint_conversion.rb
deleted file mode 100644
index a105bea13ab..00000000000
--- a/db/post_migrate/20230201012846_backfill_todos_note_id_for_bigint_conversion.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-# frozen_string_literal: true
-
-class BackfillTodosNoteIdForBigintConversion < Gitlab::Database::Migration[2.1]
- TABLE = :todos
- COLUMNS = %i[note_id]
-
- restrict_gitlab_migration gitlab_schema: :gitlab_main
-
- def up
- backfill_conversion_of_integer_to_bigint(TABLE, COLUMNS, sub_batch_size: 500)
- end
-
- def down
- revert_backfill_conversion_of_integer_to_bigint(TABLE, COLUMNS)
- end
-end