All pastes #2052545 Raw Edit

Someone

public python v1 · immutable
#2052545 ·published 2011-05-01 16:17 UTC
rendered paste body
class Poi(GeoPoint):    MAX_GEOCELL_RESOLUTION = 8    poi_type = db.StringProperty()    poi_name = db.StringProperty()class Spot(GeoPoint):    like_count = db.IntegerProperty()    dislike_count = db.IntegerProperty()    poi = db.ReferenceProperty(Poi)class Rating(GeoPoint):    like = db.BooleanProperty()    spot = db.ReferenceProperty(Spot)    user = db.ReferenceProperty(User)    creation_date = db.DateTimeProperty(auto_now_add=True)