Мои основные данные обновят еще один атрибут, и, чтобы избежать сбоев, я сначала добавил новую версию модели, но где я могу установить истинные параметры миграции, поскольку у моего делегата приложения нет постоянного координатора
lazy var persistentContainer: NSPersistentContainer = { let container = NSPersistentContainer(name: "Your Core data modeld name") let description = NSPersistentStoreDescription() description.shouldMigrateStoreAutomatically = true description.shouldInferMappingModelAutomatically = true container.persistentStoreDescriptions = [description] //--------------------------------------------------------// container.loadPersistentStores(completionHandler: { (storeDescription, error) in if let error = error as NSError? { fatalError("Unresolved error \(error), \(error.userInfo)") } }) return container }()