wedding-planner/app/models/tables_arrangement.rb

7 lines
140 B
Ruby

# Copyright (C) 2024 Manuel Bustillo
class TablesArrangement < ApplicationRecord
has_many :seats
has_many :guests, through: :seats
end