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/20221226132038_index_ci_runners_on_creator_id.rb')
-rw-r--r--db/migrate/20221226132038_index_ci_runners_on_creator_id.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/db/migrate/20221226132038_index_ci_runners_on_creator_id.rb b/db/migrate/20221226132038_index_ci_runners_on_creator_id.rb
deleted file mode 100644
index e163380533b..00000000000
--- a/db/migrate/20221226132038_index_ci_runners_on_creator_id.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# frozen_string_literal: true
-
-class IndexCiRunnersOnCreatorId < Gitlab::Database::Migration[2.1]
- disable_ddl_transaction!
-
- INDEX_NAME = 'index_ci_runners_on_creator_id_where_creator_id_not_null'
-
- def up
- add_concurrent_index :ci_runners, :creator_id, where: 'creator_id IS NOT NULL', name: INDEX_NAME
- end
-
- def down
- remove_concurrent_index_by_name :ci_runners, INDEX_NAME
- end
-end