Fix Rails/ReversibleMigration
cop for remove_index
(#30832)
This commit is contained in:
parent
8922786ef4
commit
4682804448
6 changed files with 11 additions and 11 deletions
|
@ -2,8 +2,8 @@
|
|||
|
||||
class RemoveUnneededIndexes < ActiveRecord::Migration[5.0]
|
||||
def change
|
||||
remove_index :notifications, name: 'index_notifications_on_account_id'
|
||||
remove_index :settings, name: 'index_settings_on_target_type_and_target_id'
|
||||
remove_index :statuses_tags, name: 'index_statuses_tags_on_tag_id'
|
||||
remove_index :notifications, :account_id, name: 'index_notifications_on_account_id'
|
||||
remove_index :settings, [:target_type, :target_id], name: 'index_settings_on_target_type_and_target_id'
|
||||
remove_index :statuses_tags, :tag_id, name: 'index_statuses_tags_on_tag_id'
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue