Skip to content

Commit

Permalink
Fix: Add missing migration file
Browse files Browse the repository at this point in the history
Forgot to include this file in the commit modifying the DB schema.
scruti committed Jan 13, 2025
1 parent 8e5e918 commit 859c004
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions db/migrate/20250113131902_add_index_to_alert_runs_run_on.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
class AddIndexToAlertRunsRunOn < ActiveRecord::Migration[7.2]
disable_ddl_transaction!

def change
add_index :alert_runs, :run_on, algorithm: :concurrently
end
end

0 comments on commit 859c004

Please sign in to comment.