My understanding of changing db.Model schemas is that it 'doesn't matter' if you add a property and then try and fetch old entities without that property.
Indeed, adding the following property to my SiteUser db.Model running on dev_server:
category_subscriptions = db.StringProperty()
Still allows me to retrieve an old SiteUser entity doesn't have this property (via a GQL query).
However, changing the property to a list property, (either StringListProperty, ListProperty):
category_subscriptions = db.StringListProperty()
results in the following error when I try and retrieve the user:
BadValueError: Property category_subscriptions is required
This is on the SDK dev server version 1.7.4. Why is that and how would I work around it?
SiteUserentity using itsKeyid instead of a GQL query and see if you still get an error message? – Martín Valdés de León Jan 18 at 14:53