wedding-planner/db/migrate/20250127183547_create_invitations.rb

11 lines
317 B
Ruby
Raw Normal View History

2025-01-27 20:08:28 +01:00
class CreateInvitations < ActiveRecord::Migration[8.0]
def change
create_table :invitations, id: :uuid do |t|
t.references :wedding, null: false, foreign_key: { on_delete: :cascade }, type: :uuid
t.timestamps
end
add_reference :guests, :invitation, foreign_key: true, type: :uuid
end
end