(apologies for not putting this in the python-specific forum - as far as I can tell, there isn't one, despite what the welcome message says)
Hey guys,
I have a model defined like so:
class stickletUser(db.Model):
author = db.UserProperty()
email = db.EmailProperty()
has_shared = db.ListProperty(str)
connections = db.ListProperty(str)
However, I'm having problems with the has_shared property, and when I check the model in the Datastore Viewer it doesn't list that property - all the other ones, but not that one. This is running locally or on the deployed version.
Any advice? Thanks!