orbit-basic/vendor/built_in_modules/calendar/app/models/event.rb

20 lines
419 B
Ruby

class Event
include Mongoid::Document
include Mongoid::Timestamps
field :title
field :note
field :start_year, type: Integer
field :end_year, type: Integer
field :start_month, type: Integer
field :end_month, type: Integer
field :start_date, type: Integer
field :end_date, type: Integer
field :start_time, type: Float
field :start_am_pm
field :end_time, type: Float
field :end_am_pm
belongs_to :cal
end