BigW Consortium Gitlab

20160328121138_add_notification_setting_index.rb 217 Bytes
Newer Older
1
# rubocop:disable all
2 3 4 5 6 7
class AddNotificationSettingIndex < ActiveRecord::Migration
  def change
    add_index :notification_settings, :user_id
    add_index :notification_settings, [:source_id, :source_type]
  end
end