summaryrefslogtreecommitdiff
path: root/db/migrate/20130622115340_add_more_db_index.rb
blob: 4113217de59656d49d266fcf8e87b7c5716246d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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