Is it possible to move a Core Data entity Car
and its data in Model1
into a new Core Data model Model2
using migration? Model2
will also have a new CarOwner
entity + other new relationships (so model file is different than Model1
). Is this possible using lightweight migration or do I have to use custom migration? I'm using Magical Record to setup my Core Data Stack.
I have been using lightweight migration for years with success. So I don't have any custom migration mechanism in place. I want to ask first before I implement a new system so I can incorporate CD custom migration into my existing MagicalRecord Core Data stack.
EDIT: updated question to clarify that Model1
and Model2
have differences.