Skip to content

Instantly share code, notes, and snippets.

@maetl
Created May 22, 2010 15:16
Show Gist options
  • Save maetl/410139 to your computer and use it in GitHub Desktop.
Save maetl/410139 to your computer and use it in GitHub Desktop.
class Picture(db.Model):
name = db.StringProperty()
ext = db.StringProperty()
mime_type = db.StringProperty()
source = db.BlobProperty()
thumb = db.BlobProperty()
default = db.BlobProperty()
caption = db.StringProperty()
updated_at = db.DateTimeProperty()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment