Skip to content

Instantly share code, notes, and snippets.

@tzangms
Created November 9, 2010 06:51
Show Gist options
  • Save tzangms/668797 to your computer and use it in GitHub Desktop.
Save tzangms/668797 to your computer and use it in GitHub Desktop.
class StatusDate(db.Model):
user = db.ReferenceProperty(User, collection_name='status_dates')
count = db.IntegerProperty(default=0)
tweets_count = db.IntegerProperty(default=0)
plurks_count = db.IntegerProperty(default=0)
fb_posts_count = db.IntegerProperty(default=0)
date = db.DateProperty(required=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment