about summary refs log tree commit diff
path: root/db/migrate/20170418160728_add_indexes_to_reports_for_accounts.rb
blob: cd69bb8b14b38ee5a1fc6952cb30f094eebec49d (plain) (blame)
1
2
3
4
5
6
class AddIndexesToReportsForAccounts < ActiveRecord::Migration[5.0]
  def change
    add_index :reports, :account_id
    add_index :reports, :target_account_id
  end
end