I'm looking for the smartest/various way of handling categories in App Engine. I see two approaches:
Google App Engine Data Store Model Reference Another Class
using way A:
companycategory = db.ReferenceProperty(mycategories, collection_name = 'categories')
from the example in the url:
class Category(db.Model)
name = db.StringProperty(required=True)
city = db.ReferenceProperty(City, collection_name = 'categories')
and way B:
companycategory = db.CategoryProperty(default="A", choices=["A", "AA", "B", "C"], required=True)
Is there anything else to consider. A uses a table and another object model which seems overkill, but way B puts text into fields which means typo's might well creep in. Short of putting integers into the category field and manually referencing is there a smart way to do anything else? Or do I bite the bullet with a another model/table?
Thanks in advance