Suppose you design classes for the App Engine model in a specific way, you create your own code and allow users to interact with your application for a while, generating data in the App Engine data store.
Now suppose you decide to make changes to one of your Model classes.
Is there a recommended process for this - in my case in a Java application - so that when the new code is put into production, it will not cause the application to crash while working with pre-existing data, the old scheme?
For example, should production data be loaded and tested before any new code is loaded into production?
What are the best methods for this type of problem?
source
share