@@ -41,8 +41,8 @@ The steps to set up your SQLiteData project for CloudKit synchronization are the
4141[ same for setting up] [ setup-cloudkit-apple ] any other kind of project for CloudKit:
4242
4343 * Follow the [ Configuring iCloud services] guide for enabling iCloud entitlements in your project.
44- * Follow the [ Configuring background execution modes] guide for adding the Background Modes
45- capability to your project.
44+ * Follow the [ Configuring background execution modes] guide for adding the " Background Modes"
45+ capability to your project and turning on "Remote notifications" .
4646 * If you want to enable sharing of records with other iCloud users, be sure to add a
4747 ` CKSharingSupported ` key to your Info.plist with a value of ` true ` . This is subtly documented
4848 in [ Apple's documentation for sharing] .
@@ -716,10 +716,6 @@ migrator.registerMigration("Convert 'remindersLists' table primary key to UUID")
716716 // IDs to UUIDs
717717 try #sql ("""
718718 INSERT INTO "new_remindersLists"
719- (
720- "id",
721- -- all other columns from 'remindersLists' table
722- )
723719 SELECT
724720 -- This converts integers to UUIDs, e.g. 1 -> 00000000-0000-0000-0000-000000000001
725721 '00000000-0000-0000-0000-' || printf('%012x', "id"),
@@ -763,11 +759,6 @@ migrator.registerMigration("Convert 'reminders' table primary key to UUID") { db
763759 // IDs to UUIDs
764760 try #sql ("""
765761 INSERT INTO "new_reminders"
766- (
767- "id",
768- "remindersListID",
769- -- all other columns from 'reminders' table
770- )
771762 SELECT
772763 -- This converts integers to UUIDs, e.g. 1 -> 00000000-0000-0000-0000-000000000001
773764 '00000000-0000-0000-0000-' || printf('%012x', "id"),
0 commit comments