add submission event account id

This commit is contained in:
Pete Matsyburka
2025-11-21 11:17:20 +02:00
parent 7481d27822
commit 5d4a032763
2 changed files with 11 additions and 1 deletions
@@ -0,0 +1,7 @@
# frozen_string_literal: true
class AddAccountIdToSubmissionEvents < ActiveRecord::Migration[8.0]
def change
add_reference :submission_events, :account, null: true, foreign_key: true, index: true
end
end