20170418160728_add_indexes_to_reports_for_accounts.rb 170 B

123456
  1. class AddIndexesToReportsForAccounts < ActiveRecord::Migration[5.0]
  2. def change
  3. add_index :reports, :account_id
  4. add_index :reports, :target_account_id
  5. end
  6. end