There are a few Lightweight Migration questions on Stack Overflow already, but most of them have extra wrenches in the mix. I'm doing the most basic migration possible and it's failing. I've done this several times in the past with no issue, so this is getting quite frustrating. It feels like this might be a problem with Xcode 4, which is just terrible when it comes to working with Core Data.

I've got my old model version (actually a few old versions) and a new version which is marked active. I have the two options booleans set, automatically migrate and infer:

NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:YES], NSMigratePersistentStoresAutomaticallyOption, [NSNumber numberWithBool:YES], NSInferMappingModelAutomaticallyOption, nil];

The only difference between my last active model and my new one is a single new attribute (Date) which is optional. As far as I know, a single new optional attribute shouldn't cause any issues with lightweight migration.

I run the app and I get "Can't find or automatically infer mapping model for migration" which seems absurd. There's only a single change - and it's optional!

What am I missing? It must be something stupid.

link|improve this question

maybe one of you models is not a member of the target you are running? – sgosha May 3 '11 at 20:04
feedback

1 Answer

up vote 1 down vote accepted

As you stated, just adding a column shouldn't raise that error. This error is typically raised when for instance unsetting an optional field (CoreData then doesn't know what to do with existing NULL values) or changing a field type. Which is not your case. You might have accidentally clicked somewhere...

To diagnose what's happening, surround your code with @try{}@catch{}, which I guess you already doing, and give a look at catched Exception e.userInfo property, most of the time CoreData gives all details about what caused the error, like which Field, which reason... That might help!

You could also simply delete last model version and recreate it, since there is only one small change.

link|improve this answer
After trying to fix the issue without success (including deleting the model and recreating it a few times) I finally gave up and did what I needed to do without changing the database model. I'm still going to mark this as the answer though because there's definitely some useful info for anyone trying to debug a stupid Core Data issue. – Cory Imdieke May 5 '11 at 19:03
darn i hate when someone (including me) has to come to dead ends like this, could you paste the userInfo from Core Data Exception, there must be something interesting in it! If not, a bug report to Apple should help. Anyway, thanks for accepting my answer. – Vincent G May 5 '11 at 20:35
feedback

Your Answer

 
or
required, but never shown

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