mirror of
https://github.com/SrIzan10/hc-harbor.git
synced 2026-05-01 10:45:21 +00:00
10 lines
293 B
Ruby
10 lines
293 B
Ruby
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
|
|
end
|
|
end
|