7 lines
129 B
Ruby
7 lines
129 B
Ruby
class SeatTable < ApplicationRecord
|
|
belongs_to :zone
|
|
|
|
# validations
|
|
validates_presence_of :name,:order_by, :created_by
|
|
end
|