about summary refs log tree commit diff
path: root/db/migrate/20220428114454_add_index_reports_on_assigned_account_id.rb
blob: c260c9732af43d47c03a945190fa96e90d149edb (plain) (blame)
1
2
3
4
5
6
7
class AddIndexReportsOnAssignedAccountId < ActiveRecord::Migration[6.1]
  disable_ddl_transaction!

  def change
    add_index :reports, [:assigned_account_id], name: :index_reports_on_assigned_account_id, algorithm: :concurrently, where: 'assigned_account_id IS NOT NULL'
  end
end