public boolean downgrade(JSONObject state, StateStore stateStore, Migrator migrator) throws JSONException { return migrator.removeProperty(state, "customBar"); }
public boolean upgrade(JSONObject state, StateStore stateStore, Migrator migrator) throws JSONException { JSONObject properties = (JSONObject) state.get(MapEntityStore.JSONKeys.properties.name()); return migrator.addProperty(state, "customBar", "Hello " + properties.getString("bar")); }