2024-08-04 07:06:03 +02:00
|
|
|
class Company < ApplicationRecord
|
2024-08-06 14:16:40 +02:00
|
|
|
has_many :customers, dependent: :destroy
|
|
|
|
|
has_many :reservations, dependent: :destroy
|
2024-08-11 14:18:36 +02:00
|
|
|
has_many :teams, dependent: :destroy
|
2024-08-04 07:06:03 +02:00
|
|
|
end
|