I've created a core data based application and users are able to backup and restore the database using dropbox.
Now I've changed the model (new version) adding a couple of attributes to an existing entity and implemented lightweight migration.
Migration works fine, my problem is when I restore the database created with previous model.
If I kill the app and relaunch the lightweight migration updates the database schema but I'd like to implement a way to force db schema update to new model without kill the app.
is there a way to do this?
Thanks, Max