renaming ID's entity in Core Data more than once? (for third version)
core-data, objective-c, versioning
Solution
You do it exactly the same way by adding a third model version so that you remain backwards compatible for both versions.
Problem
how can i change the name of my model's entity more than once : let's say from version 1 to 2, my entity changes from "Entity" to "MyEntity", and then from 2 to 3, it changes from "MyEntity" to "MyLastEntity" ? In order to change the name from version 1 to 2, i put in both versions the same name in "renaming ID" (in "Versioning"), but how should i make the change from version 2 to 3?