7 lines
184 B
Ruby
7 lines
184 B
Ruby
# frozen_string_literal: true
|
|
class Schedule < ApplicationRecord
|
|
belongs_to :paid_time_off
|
|
|
|
validates_presence_of :date_begin, :date_end, :event_desc, :event_name, :event_type
|
|
end
|