💬
CoreDataのエンティティを変更した場合
CoreDataのエンティティのマイグレーションを有効にする
Persistence.swiftおよび、PersistenceController内のinit()内に以下のコードを加筆する
let description = NSPersistentStoreDescription()
description.shouldMigrateStoreAutomatically = true
description.shouldInferMappingModelAutomatically = true
container.persistentStoreDescriptions = [description]
これがないとプレビューがクラッシュする
知らないといけないことが多すぎる・・・
Discussion