Skip to content

Instantly share code, notes, and snippets.

@pythononwheels
Created February 8, 2019 21:32
Show Gist options
  • Save pythononwheels/a95e6f866c39253c0231ad6512bcd81d to your computer and use it in GitHub Desktop.
Save pythononwheels/a95e6f866c39253c0231ad6512bcd81d to your computer and use it in GitHub Desktop.
class Todo(TinyModel):
schema = {
'title' : { 'type' : 'string', 'maxlength' : 35 },
'text' : { 'type' : 'string' },
'tags' : { 'type' : 'list', "default" : [] },
"votes" : { "type" : "integer", "default" : 0 }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment