2025-01-27 19:44:30 +00:00
|
|
|
# Copyright (C) 2024-2025 LibreWeddingPlanner contributors
|
|
|
|
|
2025-01-27 20:08:28 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: invitations
|
|
|
|
#
|
|
|
|
# id :uuid not null, primary key
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# wedding_id :uuid not null
|
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
|
|
|
# index_invitations_on_wedding_id (wedding_id)
|
|
|
|
#
|
|
|
|
# Foreign Keys
|
|
|
|
#
|
|
|
|
# fk_rails_... (wedding_id => weddings.id) ON DELETE => cascade
|
|
|
|
#
|
|
|
|
class Invitation < ApplicationRecord
|
|
|
|
acts_as_tenant :wedding
|
|
|
|
has_many :guests, dependent: :nullify
|
|
|
|
end
|