2010-06-20 22:01:11 +02:00
|
|
|
class Event < CouchRest::Model::Base
|
2009-05-27 18:16:50 -07:00
|
|
|
use_database DB
|
2009-02-25 00:22:11 -08:00
|
|
|
|
|
|
|
property :subject
|
2010-06-20 22:01:11 +02:00
|
|
|
property :occurs_at, Time, :init_method => 'parse'
|
|
|
|
property :end_date, Date, :init_method => 'parse'
|
2009-09-02 23:54:25 -03:00
|
|
|
|
2010-03-03 02:18:32 +00:00
|
|
|
end
|