In the past I created several versions of my database with XCode 3 and it all runs smoothly. It should be a very simple task to add a new attribute to an existing entity without changing something else. But the migration process will not work at all.
Btw I have moved all mappingmodels outside the datamodel-container because the will not apprear in XCode 4 anymore. I think it's not importend because the migration appears to be working until 1.1.2.
I have done the following steps:
- created a new version 1.1.3 based on 1.1.2 and added an optional integer called "time" and change the current db version
- new file->mappingmodel from 1.1.2 to 1.1.2 and added a default value of 0
- recreated the .h and .m
- deleted the app in the simulator and run an old version of it with db version 1.1.0 to check the migration process
[edit] To run an old version, I simply changed the current db version to 1.1.0 and run it.It will create a empty database based on version 1.1.0 and crash as expected because "time" is missing but used. [/edit]
This results in the following error:
Unresolved error Error Domain=NSCocoaErrorDomain Code=134140 "The operation couldn’t be completed. (Cocoa error 134140.)"...(according to the source and destination in this errormessage there are only a few changes: a new attribute, a few new empty subentities and a few "\n"'s )
=> NSMigrationMissingMappingModelError but it's in the same folder as the others.
Looking at the compiled App there are .cdm for all mapping models(outside the .momd) but only .mom files from 1.0.0 to 1.1.0 (the ones for 1.1.1 and 1.1.2 are missing).
Looking at the .momd containter there are .mom files for all versions but there are only 2 .omo files for 1.1.2 and 1.1.3
[edit] After several tries and rebuilds there are no .mom files anymore and only one .omo file for the last version. I don't know how I can force Xcode to recreate them, maybe it is just not essential.[/edit]
If I go on and change the current db version back to 1.1.2 to see if the db's migration works until 1.1.2 I received a crash because the time attribute is missing in the db. If I change the current db version to 1.1.3 again the app works correctly.
But why is it possible to migrate it step by step and not automatically at once? Is it because Xcode 4 have created other mappings which can't be migrated at the same time with old ones? How can I convert the new ones to the old format or vice versa?
A (hint to a) solution would be great because it is an appstore app with high demand.
thank you very much