WIP: migrations demo

This commit is contained in:
John Estropia
2020-09-08 09:09:36 +09:00
parent 8d7f282743
commit 2bbf6b34ea
16 changed files with 199 additions and 16 deletions

View File

@@ -78,18 +78,6 @@ extension Menu {
)
}
Section(header: Text("Classic (NSManagedObject subclasses)")) {
Menu.ItemView(
title: "Placemarks",
subtitle: "Making changes using transactions in Swift",
destination: { EmptyView() }
)
.disabled(true)
Menu.ItemView(
title: "Time Zones",
subtitle: "Fetching objects and Querying raw values",
destination: { EmptyView() }
)
.disabled(true)
Menu.ItemView(
title: "Colors",
subtitle: "Observing list changes and single-object changes using ListMonitor",
@@ -104,16 +92,19 @@ extension Menu {
subtitle: "Switching between multiple persistent stores",
destination: { EmptyView() }
)
.disabled(true)
Menu.ItemView(
title: "Evolution",
subtitle: "Migrating and reverse-migrating stores",
destination: { EmptyView() }
)
.disabled(true)
Menu.ItemView(
title: "Logger",
subtitle: "Implementing a custom logger",
destination: { EmptyView() }
)
.disabled(true)
}
}
.listStyle(GroupedListStyle())