7 lines
125 B
Ruby
7 lines
125 B
Ruby
# Copyright (C) 2024 Manuel Bustillo
|
|
|
|
class Seat < ApplicationRecord
|
|
belongs_to :guest
|
|
belongs_to :table_arrangement
|
|
end
|