0
votes

I have published my app in the store. Initially, there was no use of CoreData in the app as it was simple. Now I have to persist the data using it. My released app has xcdatamodel in it but there is no entity, its empty. Now as I am going to add new entities in it, will my new release cause issue for those users who have already installed my app from app store?

Do I need to create a new model version, in case if my previous version had no entities?

Also I am going to user MagicalRecord. Does setupCoreDataStackWithAutoMigratingSqliteStoreNamed method is sufficient to perform migration?

1

1 Answers

1
votes

The mentioned

setupCoreDataStackWithAutoMigratingSqliteStoreNamed

should be sufficient.