Created
February 25, 2010 17:50
-
-
Save jcromartie/314809 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defmodel message | |
:coll :messages | |
:fields {:msg [non-empty-str (partial truncate-str 140)] | |
:points [int :default 0] | |
:user_id [to-id required] | |
:venue_id [to-id] | |
:created [date :default current-date] | |
:updated [current-date] | |
:fb [str] | |
:tw [str] | |
:photo [str] | |
:status [str :default "published"]} | |
:validators [assoc-points]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment