경량 마이그레이션은 원본 및 대상 관리 개체 모델 간의 차이점에서 마이그레이션을 추론합니다.
let psc = NSPersistentStoreCoordinator(managedObjectModel: mom)
let options = [NSMigratePersistentStoresAutomaticallyOption: true, NSInferMappingModelAutomaticallyOption: true]
do {
try psc.addPersistentStore(ofType: NSSQLiteStoreType, configurationName: nil, at: storeURL, options: options)
} catch {
fatalError("Failed to add persistent store: \(error)")
}