I added a new version of my data model and changed one attribute from double to float. Do I really have to create a migration mapping?
So now I'm stuck.
I found the Apple docs about migrating to new data models with NSMappingModels (and XCode 3), but I don't know if it is really necessary if just the type of an attribute has changed.
After updating my app, I got that error msg from persistentStoreCoordinator:
Failed to open persistent store: Error Domain=NSCocoaErrorDomain Code=134130 "The operation couldn’t be completed.
Is there an easy way (howto/tutorial) to migrate, if only attribute types have changed? Deleting the app is no solution, the first version is already deployed.
Thanks, Chris