summaryrefslogtreecommitdiff
path: root/db/post_migrate/20221021082314_add_unique_index_on_ci_runners_token_encrypted.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-05-16 15:51:24 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2023-05-16 15:51:24 +0000
commita411134409a19fd867f39dc7a886beeffe4b3dbc (patch)
treeedc35990c03888d6c2aa95bf571d489af26e4bed /db/post_migrate/20221021082314_add_unique_index_on_ci_runners_token_encrypted.rb
parentbbfdfe0f69ec43862a3b2390002016bc7208bb43 (diff)
downloadgitlab-ce-a411134409a19fd867f39dc7a886beeffe4b3dbc.tar.gz
Add latest changes from gitlab-org/gitlab@15-11-stable-ee
Diffstat (limited to 'db/post_migrate/20221021082314_add_unique_index_on_ci_runners_token_encrypted.rb')
-rw-r--r--db/post_migrate/20221021082314_add_unique_index_on_ci_runners_token_encrypted.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/db/post_migrate/20221021082314_add_unique_index_on_ci_runners_token_encrypted.rb b/db/post_migrate/20221021082314_add_unique_index_on_ci_runners_token_encrypted.rb
new file mode 100644
index 00000000000..12fc6a72e84
--- /dev/null
+++ b/db/post_migrate/20221021082314_add_unique_index_on_ci_runners_token_encrypted.rb
@@ -0,0 +1,18 @@
+# frozen_string_literal: true
+
+class AddUniqueIndexOnCiRunnersTokenEncrypted < Gitlab::Database::Migration[2.0]
+ disable_ddl_transaction!
+
+ INDEX_NAME = 'index_uniq_ci_runners_on_token_encrypted'
+
+ def up
+ add_concurrent_index :ci_runners,
+ :token_encrypted,
+ name: INDEX_NAME,
+ unique: true
+ end
+
+ def down
+ remove_concurrent_index_by_name :ci_runners, INDEX_NAME
+ end
+end