summaryrefslogtreecommitdiffstats
path: root/db/migrate/20230907150100_add_index_account_stats_on_last_status_at_and_account_id.rb
blob: 17ac65547c5038a195e9b71f038ff73f2b4a7753 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddIndexAccountStatsOnLastStatusAtAndAccountId < ActiveRecord::Migration[7.0]
  disable_ddl_transaction!

  def change
    add_index :account_stats, [:last_status_at, :account_id], order: { last_status_at: 'DESC NULLS LAST' }, algorithm: :concurrently
  end
end