I use Core Data. During development when I add a new model version, I need to clean my project in xcode before I build it, so that a migration to the new model version takes place.
So when my users update their app is their app "cleaned" as well before the first start? Or do I need to force migration in another way?
To be more precise: When I just build my new app version (with a new core data model version) in xcode and run it on the device it crashes whenever I try to access new properties of my managed objects (since it did not migrate the sqlite DB to the new model).