Skip to content

Instantly share code, notes, and snippets.

@solnic
Created March 3, 2010 12:11
Show Gist options
  • Save solnic/320567 to your computer and use it in GitHub Desktop.
Save solnic/320567 to your computer and use it in GitHub Desktop.
class LoggedEvent
include DataMapper::Mongo::Resource
property :id, ObjectID
property :type, Discriminator
property :message, String
property :custom_attributes, Hash
property :created_at, DateTime
end
class ProjectEvent < LoggedEvent
belongs_to :project
end
class ColumnEvent < ProjectEvent
belongs_to :column
end
class TaskEvent < LoggedEvent
belongs_to :task
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment