blob: 667270d6b048880aec06738be8e4a350074e8a7b (
plain)
1
2
3
4
5
6
7
|
# rubocop:disable all
class AddNotificationSettingIndex < ActiveRecord::Migration
def change
add_index :notification_settings, :user_id
add_index :notification_settings, [:source_id, :source_type]
end
end
|