hensei-api/db/migrate/20230124100823_add_accessory_id_to_party.rb

7 lines
213 B
Ruby

class AddAccessoryIdToParty < ActiveRecord::Migration[7.0]
def change
change_table(:parties) do |t|
t.references :accessory, type: :uuid, foreign_key: { to_table: 'job_accessories' }
end
end
end