summaryrefslogtreecommitdiff
path: root/db/migrate/20160819221631_add_index_to_note_discussion_id.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20160819221631_add_index_to_note_discussion_id.rb')
-rw-r--r--db/migrate/20160819221631_add_index_to_note_discussion_id.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/db/migrate/20160819221631_add_index_to_note_discussion_id.rb b/db/migrate/20160819221631_add_index_to_note_discussion_id.rb
new file mode 100644
index 00000000000..b6e8bb18e7b
--- /dev/null
+++ b/db/migrate/20160819221631_add_index_to_note_discussion_id.rb
@@ -0,0 +1,14 @@
+# See http://doc.gitlab.com/ce/development/migration_style_guide.html
+# for more information on how to write migrations for GitLab.
+
+class AddIndexToNoteDiscussionId < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ disable_ddl_transaction!
+
+ def change
+ add_concurrent_index :notes, :discussion_id
+ end
+end