8 lines
213 B
Ruby
8 lines
213 B
Ruby
# 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
|