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

16 lines
236 B
Ruby
Raw Normal View History

2012-09-14 13:59:20 +00:00
class Event
include Mongoid::Document
include Mongoid::Timestamps
field :title
field :description
field :start_year
field :end_year
field :start_month
field :end_month
field :start_date
field :end_date
belongs_to :cal
end