summaryrefslogtreecommitdiff
path: root/db/migrate/20161207231621_create_environment_name_unique_index.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20161207231621_create_environment_name_unique_index.rb')
-rw-r--r--db/migrate/20161207231621_create_environment_name_unique_index.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/db/migrate/20161207231621_create_environment_name_unique_index.rb b/db/migrate/20161207231621_create_environment_name_unique_index.rb
deleted file mode 100644
index 28d22664405..00000000000
--- a/db/migrate/20161207231621_create_environment_name_unique_index.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-# rubocop:disable RemoveIndex
-class CreateEnvironmentNameUniqueIndex < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- disable_ddl_transaction!
-
- DOWNTIME = true
- DOWNTIME_REASON = 'Making a non-unique index into a unique index'
-
- def up
- remove_index :environments, [:project_id, :name]
- add_concurrent_index :environments, [:project_id, :name], unique: true
- end
-
- def down
- remove_index :environments, [:project_id, :name]
- add_concurrent_index :environments, [:project_id, :name], unique: true
- end
-end