2016-06-16 23:09:34 +05:30
|
|
|
# rubocop:disable all
|
2016-06-02 11:05:42 +05:30
|
|
|
class AddNotificationSettingIndex < ActiveRecord::Migration
|
|
|
|
def change
|
|
|
|
add_index :notification_settings, :user_id
|
|
|
|
add_index :notification_settings, [:source_id, :source_type]
|
|
|
|
end
|
|
|
|
end
|