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/migrate/20230202023208_initialize_conversion_of_suggestions_note_id_to_bigint.rb')
-rw-r--r--db/migrate/20230202023208_initialize_conversion_of_suggestions_note_id_to_bigint.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/db/migrate/20230202023208_initialize_conversion_of_suggestions_note_id_to_bigint.rb b/db/migrate/20230202023208_initialize_conversion_of_suggestions_note_id_to_bigint.rb
deleted file mode 100644
index 9b271089801..00000000000
--- a/db/migrate/20230202023208_initialize_conversion_of_suggestions_note_id_to_bigint.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-# frozen_string_literal: true
-
-class InitializeConversionOfSuggestionsNoteIdToBigint < Gitlab::Database::Migration[2.1]
- TABLE = :suggestions
- COLUMNS = %i[note_id]
-
- enable_lock_retries!
-
- def up
- initialize_conversion_of_integer_to_bigint(TABLE, COLUMNS)
- end
-
- def down
- revert_initialize_conversion_of_integer_to_bigint(TABLE, COLUMNS)
- end
-end