This commit is contained in:
Kartikey Chauhan
2025-07-23 06:31:59 +05:30
parent 071893cbf4
commit 3cb6569a5c

View File

@@ -1,9 +1,9 @@
class AddIndexToHeartbeatsProject < ActiveRecord::Migration[8.0]
# this is what i got from stackoverflow
disable_ddl_transaction!
def change
add_index :heartbeats, :project, algorithm: :concurrently
add_index :heartbeats, [:project, :time], algorithm: :concurrently
add_index :heartbeats, [ :project, :time ], algorithm: :concurrently
end
end