Reputation: 23427
Is there any way to alter the Property names in the Google application engine for a Kind, or in other words is there a way to alter the column names of a table in Google application Engine (though it follows a different way to handle the data)? I am using python.
Please suggest.
Thanks in advance.
Upvotes: 2
Views: 504
Reputation: 8058
Refactoring on Google AppEngine involves you having to either modify all of the records in your datastore as you make the change, or write the code so that it will still read the old value if the new value doesn't exist.
Removing a column from the datastore is possible but not easy. More information can be found here.
Upvotes: 4