summaryrefslogtreecommitdiff
path: root/db/migrate/20130622115340_add_more_db_index.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20130622115340_add_more_db_index.rb')
-rw-r--r--db/migrate/20130622115340_add_more_db_index.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/db/migrate/20130622115340_add_more_db_index.rb b/db/migrate/20130622115340_add_more_db_index.rb
deleted file mode 100644
index 4113217de59..00000000000
--- a/db/migrate/20130622115340_add_more_db_index.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# rubocop:disable all
-class AddMoreDbIndex < ActiveRecord::Migration
- def change
- add_index :deploy_keys_projects, :project_id
- add_index :web_hooks, :project_id
- add_index :protected_branches, :project_id
-
- add_index :users_groups, :user_id
- add_index :snippets, :author_id
- add_index :notes, :author_id
- add_index :notes, [:noteable_id, :noteable_type]
- end
-end