I'm playing around with CoreData in a Mac OsX application. After changing an entity i got the following error:

The managed object model version used to open the persistent store is incompatible with the one that was used to create the persistent store.

All answers i've found for this issue suggest implementing versioning/migration into the app, but I'm not interested in saving my data. Isn't there a less complicated solution for that? Like deleting the stock file or something like that? And if yes, where is this file located?

Thanks.

link|improve this question

43% accept rate
feedback

2 Answers

up vote 2 down vote accepted

If you don't want the data, then yes, you can simply delete the old file and create a new one. If your data is document based, then the document itself should be deleted. If you use a single store for the whole application (not document based), then you should look in the code that creates the store object to find the location. The template places the creation code in the application delegate, and the default location for the store is in ${HOME}/Library/Application Support/${APP_NAME}/.

link|improve this answer
Works perfectly. Thanks. – shadowhorst May 10 '11 at 18:30
hmm my applicaiton doesn't seem to be here. anywhere else i could look? – binnyb Dec 21 '11 at 21:33
@binnyb You need to find the code which creates the store. It will create the path where it stores the file. – ughoavgfhw Dec 22 '11 at 2:05
I found it. it was in the root (/Library/Application Support) directory not home – binnyb Dec 22 '11 at 14:12
feedback

All applications in iOS are sandboxed. So if you delete the application from the simulator or your device, the data will be deleted. When you rebuild the app it should recreate the store and your

The model used to open the store is incompatible with the one used to create the store ...

should disappear.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.