2010-06-20 22:01:11 +02:00
|
|
|
class Event < CouchRest::Model::Base
|
2009-05-28 03:16:50 +02:00
|
|
|
use_database DB
|
2009-02-25 09:22:11 +01: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-03 04:54:25 +02:00
|
|
|
|
2010-03-03 03:18:32 +01:00
|
|
|
end
|