nazbot
nazbot

Reputation: 1697

If I change the name of a Core Data entity without setting renaming identifier, is the underlying data lost?

I made the mistake of not setting a renaming identifier when I changed an Entity name. As users upgraded they seem to have lost their data.

I'm wondering if there's a way to manually migrate the data after this has happened? Is the underlying persistent data store table still there with the data or is it deleted when there's no Entity anymore?

Upvotes: 3

Views: 224

Answers (1)

Andy Etheridge
Andy Etheridge

Reputation: 1283

The table is deleted and the data is lost.

Upvotes: 2

Related Questions