summaryrefslogtreecommitdiff
path: root/db/migrate
diff options
context:
space:
mode:
authorAndreas Brandl <abrandl@gitlab.com>2018-03-27 12:14:03 +0200
committerAndreas Brandl <abrandl@gitlab.com>2018-03-27 12:17:56 +0200
commitf208411bff713993ba37bf199f3b5495ed32cb3a (patch)
tree13d584a47164f6e0a8d8301517b7f07f7a9e5067 /db/migrate
parent01c4f56546b9fc12da7333a8d367da22c1c42c46 (diff)
downloadgitlab-ce-f208411bff713993ba37bf199f3b5495ed32cb3a.tar.gz
Remove unused index from events table.
Closes #44467.
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20180327101207_remove_index_from_events_table.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/db/migrate/20180327101207_remove_index_from_events_table.rb b/db/migrate/20180327101207_remove_index_from_events_table.rb
new file mode 100644
index 00000000000..172441da65b
--- /dev/null
+++ b/db/migrate/20180327101207_remove_index_from_events_table.rb
@@ -0,0 +1,18 @@
+# See http://doc.gitlab.com/ce/development/migration_style_guide.html
+# for more information on how to write migrations for GitLab.
+
+class RemoveIndexFromEventsTable < ActiveRecord::Migration
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ disable_ddl_transaction!
+
+ def up
+ remove_concurrent_index :events, :author_id
+ end
+
+ def down
+ add_concurrent_index :events, :author_id
+ end
+end