98bb435f42
Migrations shouldn't fail RuboCop checks - especially lint checks, such as the nested method check. To avoid changing code in existing migrations, add the magic comment to the top of each of them to skip that file.
13 lines
387 B
Ruby
13 lines
387 B
Ruby
# 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
|