1
vote
0answers
23 views

Core Data Lightweight Migration back to the beginning

I'm trying to cleanup my mess with coreData. History: - I created a coreData project for iOS - I successfully initiated a few lightweight migrations, ending up with the xcdatamodeld folder holding ...
0
votes
2answers
31 views

Versioned Data Model integration in Core Data

I have two versioned Data Models in my iOS project. The difference between the Data Models is that newer model has a new field named "new_col". In some part of the project, I need to fetch data ...
0
votes
2answers
33 views

CoreData without changes in underlying models

Good day, I have an app with CoreData that is in the Apps Store. I have now coded some cosmetic changes in the interface without changing anything in the CoreData model. I did not add/delete/or ...
0
votes
1answer
145 views

Migrating Core Data and Mapping Model

I hope all is fine for you :) I have a database using Core Data. In my application V1.0, users can import some file in the apps. Now, for my V2.0, I would like to add a attribute in my model, but ...
0
votes
0answers
55 views

NSMigrationManager's migrationProgress always return 0.0f while migrateStoreFromURL

I want to do manual migration without mapping model definition. but, the Migration manager does not have progressing value. always return 0.0f. How can I get migration progress value. Thanks for any ...
0
votes
2answers
86 views

Getting rid of old unused .mom(d) files from an installed app on IOS?

I am working on an application update. I have rewrote the application from the scratch and switched to magicalrecords for model controlling Heres my problem: I have created a new ...
0
votes
1answer
43 views

Core Data Migration (lightweight) with multiple versions

I've developed Core Data store using ABC.xcdatamodel. Distributed the app version 1. Needed to make some simple changes to attribute names, so I created a new version ABC 2.vcdatamodel. Distributed ...
5
votes
5answers
298 views

No suitable mapping model found for core data migration

I'm trying to perform an iOS Core Data migration that requires a MappingModel. Core data is not able to use the mapping model for some reason and it falls back to an automatic lightweight migration. ...
0
votes
3answers
84 views

“Can't add destination store” Core Data migration error

I try to perform migration to the new database model version in Core Data. The mapping model is successfully found by NSMappingModel *mappingModel = [NSMappingModel mappingModelFromBundles:nil ...
0
votes
0answers
86 views

UIAlertView does not show up from the Appdelegate

I am working on core data migration. I am trying to handle exception when the persistent stores do not match and the app crashes. But before it crashes, i would like to let the user know (through an ...
0
votes
1answer
86 views

iPhone app crashes with coreData error

The first version of our app is in app store. In order to internationalize the app, one minor change has been to the core data model used by the app, the change being - a new attribute added to one of ...
0
votes
0answers
222 views

MagicalRecord ios migrating not seeing migrated data

I am trying to migrate a ios core data database using MagicalRecord. I added a few attributes and I renamed a entity. I setup the mappings and from what it looks like it worked. The problem I am ...
1
vote
2answers
69 views

How to upgrade iOS Core Data model and data

I've got an iOS app which uses Core Data (SQLite on the backend). It only has one entity, 'Item'. There is a SQLite file bundled with the app, with hundreds of items pre-added, so when the user ...
-1
votes
1answer
16 views

Copying the old data model file into a new project for lightweight core data migration

I am learning Core Data Migration, and i mistakenly made some changes to my current schema file itself. But, I do have a backup copy of that project, which uses the previous schema. Now, i do not want ...
0
votes
1answer
145 views

CoreData migration - delete rules of relationships

I've found nothing about migration rules in case of changing the deletion rule of a managedObjects relationship My initial coredata model contained an entity with a relationship. The delete rule of ...
0
votes
1answer
49 views

Detecting errors in Core Data lightweight migration

I am using lightweight migration to update my model for the first time. Testing updates from previous version seems fine, but I would like to be able to trap failures and log them. How and where can ...
0
votes
0answers
79 views

Core Data Entity Migration Policy Subclass not being reliably called

I am experimenting with Core Data migration. Background: I have a project that has successfully migrated its core data once. Therefore my project file contains a packaged data model object with ...
0
votes
0answers
147 views

Error with persistent store during lightweight migration: active assertions beyond permitted time

This crash log indicates that there was an error with the persistent store; it seems like it is crashing on the lightweight migration process, but I have no idea why. Can lightweight migration take ...
0
votes
2answers
62 views

Type of entity-attribute has changed. How to migrate?

I added a new version of my data model and changed one attribute from double to float. Do I really have to create a migration mapping? So now I'm stuck. I found the Apple docs about migrating to new ...
0
votes
1answer
38 views

Adding a new entity to core data and populating some values

I am updating my core data model in the next version of my app. I have added a new entity for 'Departments', following the instructions here. I would like to add some sample departments, both for new ...
3
votes
2answers
87 views

How are multiple app updates applied?

I have released version 1.0 of my app. Version 1.1 will likely include some kind of migration code. For argument's sake, let's say it will update a core data attribute - all last names will be ...
0
votes
1answer
38 views

Is the project “cleaned” on the users device when he/she downloads an update from the app store?

I use Core Data. During development when I add a new model version, I need to clean my project in xcode before I build it, so that a migration to the new model version takes place. So when my users ...
3
votes
1answer
339 views

Debug Core Data Migration to compare hash values

I read this Post (click) about fixing a nasty core data migration problem. The author Victor Bogdan wrote that he enabled Data Migration Debug to get the hash values for the entities. What does it ...
4
votes
2answers
1k views

Migrating a Core Data Store from iCloud to local

I'm currently struggling with Core Data iCloud migration. I want to move a store from an iCloud ubiquity container (.nosync) to a local URL. The problem is that whenever I call something like this: ...
2
votes
1answer
69 views

Core Data Migration with two mapping models

I hope you are able to help me. I have three model versions V1, V2 and V3 (current model). So therefore I have two mapping models V1to2 V2to3 I also enabled the ...
0
votes
1answer
67 views

Changing a CoreData entity hierarchy

I have a CoreData model that looks like this: Abstract Entity Entity 1 Entity 2 Entity 3 "Abstract Entity" is the top entity in the hierarchy. "Entity 1" and "Entity 2" are peer sub entities ...
0
votes
0answers
142 views

UIManagedDocument core data migration

I'm writing with a problem that I have app in App Store which uses UIManagedDocument Core Data. I have updated a core data model and now i get error on app update: Terminating app due to uncaught ...
2
votes
1answer
303 views

How to Restore SQLite Database from Backup after Core Data model has changed (lightweight migration)

I have an core-data app that backs up its sqlite database to Dropbox, and the user can restore it by overwriting their current database if/when they need to. In the next app release, the core-data ...
0
votes
2answers
490 views

Lightweight Migration with RestKit

Apple's docs give the following example for setting up an (automatic) lightweight migration: NSError *error = nil; NSURL *storeURL = <#The URL of a persistent store#>; ...
0
votes
1answer
57 views

core data migration - how to fill just one new object?

I have an app on the market which has just one object instance a1 of class A in core data. In the new version I now need 2 instances b1, b2 of a new class B,and 2 instances c1, c2 of new class C. ...
2
votes
0answers
116 views

Changing a to-many relationship to a to-one with Core Data migration

I've come across a bit of a problem when I try and migrate my data model from old to new. I've been searching the web and trying to find a solution to this issue for a couple of weeks now, but still ...
1
vote
1answer
157 views

'The specified persistent store was not found.' error in CoreData

I'm getting this error: The operation couldn’t be completed. (Cocoa error 134140.) * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'The specified persistent store ...
3
votes
1answer
628 views

Core Data Mapping Model version hashes not matching to source model version hashes

With Core Data Migration Debug enabled, when performing a migration I see three entities (2, 3, 4) with changed hashes, as expected. Entity 1 doesn't change and is for illustration. Store metadata ...
1
vote
0answers
264 views

Core Data Migration Very Slow

I'm trying to perform a core data migration and everything is working fine, except that the migration itself takes over 10 seconds. I'm using an xcmappingmodel to map between my two model versions ...
0
votes
1answer
148 views

Lightweight Migration hassle iOS

i am having a bit of a hassle, i created a new version of my context & made it the default one, after that i changed my code according to the apple docs and it looks like that now: - ...
1
vote
1answer
157 views

Core Data Lightweight Migration: what's required to trigger it?

I've recently successfully done a Core Data "Lightweight Migration"; but I've noticed this required a fair bit of futzing on my part - and I'm wondering what's the absolute minimum necessary to ...
4
votes
2answers
1k views

iOS: Migrating existing Core Data-database into iCloud

I'm using Core Data in an existing application. Now I want to integrate iCloud so that the user can synchronize their contents between their iOS-devices. To do that I've written the following code for ...
2
votes
1answer
378 views

iPhone Core Data Migration leads to binary data loss when allow external storage selected

I am trying to add a new model. The new model will have one new entity and a relationship from a current entity to the new one. I have created the new model and set it as current. Although everything ...
1
vote
1answer
101 views

Is Core Data Migration necessary if I change the type of an attribute in the model from NSString to NSDate

We have an app in the App Store, and I want to change the type of an attribute in the model from an NSString to an NSDate. Since Core Data migration only modifies the persistent store (in my case an ...
1
vote
0answers
113 views

something on top of core data lightweight migration

I have an Album entity in model 5, in model 6 I added a "favoriteTracksCount" attribute with a default value 0, so this is a case when i should use a lightweight migration. But there is one issue ...
1
vote
1answer
446 views

Core Data Migration - Table Already Exists

I have an existing iPad application to which I've just added core data versioning. I've been through the documentation and followed the steps detailed. Now after choosing my new model as the current ...
0
votes
1answer
54 views

Lightweight Migration to copy attribute content

the problem is that I want to release new version of my .xcdatamodel, I want rename an attribute (no problem) but in addition I want to add a new attribute with contents of one existint, something ...
1
vote
1answer
109 views

How can I update only a few tables using a pre-populated Core Data database via an App Store Update

We have an app in the app store right now that uses a pre-populated Core Data database. We want to update all the tables in the database, except for 1 table which is the Favorites table where users ...
0
votes
1answer
199 views

iOS: Update preloaded database with user-data mixed in

I've looked all over for an answer, but it seems like I'm missing something obvious. I've made a rather complex Core Data app before, but the answer to this question has eluded me for the past few ...
3
votes
2answers
2k views

Core Data - Default Migration ( Manual )

i've read all possible blogs and SO post on the subject - but still not sure what's going on. I've also read this but still no luck - their guide to Default migration kind of clear but doesn't work in ...
0
votes
1answer
173 views

Strange Core Data Error During Migration

I'm absolutely pulling my hair out with Core Data after yet another bizarre error that I can't seem to solve. This will be the fourth version of the Data model, the previous migrations have worked ...
1
vote
1answer
260 views

Lion Sandboxing an existing Snow Leopard Core Data App

I'm going through the effort of migrating an existing Snow Leopard app store application to a sandboxed Lion application. As part of the sandboxing, the Library path moved from ~/Library to ...
0
votes
2answers
169 views

core data automatic lightweight migration failing on ios5

I have a new version of my model which has one extra attribute in one the entities and nothing else really. I have setup automatic migration as there is nothing else to migrate,and what happens is ...
3
votes
2answers
731 views

UIManagedDocument migrate data model

I am working on an iPhone app that uses a subclass of UIManagedDocument and stores its documents on iCloud. It was all working fine until I changed my core data model / scheme (adding a new model ...
2
votes
1answer
143 views

Core Data Update/AppStore update

I have an app in the AppStore which includes its own database. This database can be updated by the user. My question is, if I update with a new version y app, via AppStore, how can I mix old data ...

1 2 3