debian-mirror-gitlab/db/migrate/20130622115340_add_more_db_index.rb

13 lines
365 B
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
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