All pastes #2054892 Raw Edit

Anonymous

public text v1 · immutable
#2054892 ·published 2011-05-07 16:00 UTC
rendered paste body
class RatingSource:
    PUNKDUCK = 0 
    FLICKR = 1

class Spot(GeoPoint):
    like_count = db.IntegerProperty()
    dislike_count = db.IntegerProperty()
    source = db.IntegerProperty(default=RatingSource.PUNKDUCK)
    poi = db.ReferenceProperty(Poi)