10 lines
206 B
Ruby
10 lines
206 B
Ruby
class EmployeeShift
|
|
include SimplyStored::Couch
|
|
include ActiveModel::SerializerSupport
|
|
|
|
property :start_on, type: Time
|
|
property :end_on, type: Time
|
|
belongs_to :supplier
|
|
belongs_to :employee
|
|
end
|