10 lines
225 B
Ruby
10 lines
225 B
Ruby
class Reservation < ApplicationRecord
|
|
belongs_to :company
|
|
belongs_to :customer
|
|
belongs_to :team
|
|
|
|
validates :company_id, presence: true
|
|
validates :customer_id, presence: true
|
|
validates :team_id, presence: true
|
|
end
|