I have a Model with a big blob property User.image
Having this property in my model made my queries take too much time and go over the deadline so I decided to move that property into another model – UserData – who’s parent is the User.
However, existing model instances that are already in the datastore still contain that image data even though the Model definition no longer contains that property.
Is there any, way to delete that data from the User instances?
The answer to your question is documented here : https://developers.google.com/appengine/articles/update_schema
Copy/paste from the “Removing Deleted Properties from the Datastore” section :