Add composite index to stats table if not exists

This commit is contained in:
Eugene Burmakin 2025-12-14 22:19:58 +01:00
parent 20a4553921
commit 35995e7be8

View file

@ -13,6 +13,7 @@ class AddCompositeIndexToStats < ActiveRecord::Migration[8.0]
add_index :stats, %i[user_id year month],
name: 'index_stats_on_user_id_year_month',
unique: true,
algorithm: :concurrently
algorithm: :concurrently,
if_not_exists: true
end
end