Suppose you launch an App with the following DB schema with Hive:
box.put('schema', {'foo': true, 'bar' : 2, 'baz': 'baz'});
Some time after you launch a new version of the app and suppose the schema changes the names as follows:
box.put('schema', {'f00': true, 'b@r' : 2, 'baz': 'baz'});
What is the best approach to take with the already existing DBs of your clients?