7 lines
130 B
Ruby
7 lines
130 B
Ruby
class Room < ApplicationRecord
|
|
belongs_to :zone
|
|
|
|
validates_presence_of :name,:seater, :order_by, :created_by, :is_active
|
|
|
|
end
|