summaryrefslogtreecommitdiff
path: root/db/migrate/20170419001229_add_index_to_system_note_metadata.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170419001229_add_index_to_system_note_metadata.rb')
-rw-r--r--db/migrate/20170419001229_add_index_to_system_note_metadata.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/db/migrate/20170419001229_add_index_to_system_note_metadata.rb b/db/migrate/20170419001229_add_index_to_system_note_metadata.rb
deleted file mode 100644
index 59cd55395fc..00000000000
--- a/db/migrate/20170419001229_add_index_to_system_note_metadata.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-class AddIndexToSystemNoteMetadata < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- # Set this constant to true if this migration requires downtime.
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- # MySQL automatically creates an index on a foreign-key constraint; PostgreSQL does not
- add_concurrent_index :system_note_metadata, :note_id, unique: true if Gitlab::Database.postgresql?
- end
-
- def down
- remove_concurrent_index :system_note_metadata, :note_id, unique: true if Gitlab::Database.postgresql?
- end
-end