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/20180503150427_add_index_to_namespaces_runners_token.rb')
-rw-r--r--db/migrate/20180503150427_add_index_to_namespaces_runners_token.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/db/migrate/20180503150427_add_index_to_namespaces_runners_token.rb b/db/migrate/20180503150427_add_index_to_namespaces_runners_token.rb
deleted file mode 100644
index 899e4a05cbd..00000000000
--- a/db/migrate/20180503150427_add_index_to_namespaces_runners_token.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-# See http://doc.gitlab.com/ce/development/migration_style_guide.html
-# for more information on how to write migrations for GitLab.
-
-class AddIndexToNamespacesRunnersToken < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- add_concurrent_index :namespaces, :runners_token, unique: true
- end
-
- def down
- if index_exists?(:namespaces, :runners_token, unique: true)
- # rubocop:disable Migration/RemoveIndex
- remove_index :namespaces, :runners_token
- end
- end
-end