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/20230130125541_add_attempts_and_last_error_to_postgres_async_indexes.rb')
-rw-r--r--db/migrate/20230130125541_add_attempts_and_last_error_to_postgres_async_indexes.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/db/migrate/20230130125541_add_attempts_and_last_error_to_postgres_async_indexes.rb b/db/migrate/20230130125541_add_attempts_and_last_error_to_postgres_async_indexes.rb
deleted file mode 100644
index 31d09e5ee8a..00000000000
--- a/db/migrate/20230130125541_add_attempts_and_last_error_to_postgres_async_indexes.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-# frozen_string_literal: true
-
-class AddAttemptsAndLastErrorToPostgresAsyncIndexes < Gitlab::Database::Migration[2.1]
- # rubocop:disable Migration/AddLimitToTextColumns
- # limit is added in 20230130130624_add_text_limit_to_postgres_async_indexes_last_error.rb
- def change
- add_column :postgres_async_indexes, :attempts, :integer, null: false, default: 0
- add_column :postgres_async_indexes, :last_error, :text
- end
- # rubocop:enable Migration/AddLimitToTextColumns
-end