7 lines
140 B
Ruby
7 lines
140 B
Ruby
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
class TablesArrangement < ApplicationRecord
|
|
has_many :seats
|
|
has_many :guests, through: :seats
|
|
end
|