openchs-models 1.31.27 → 1.31.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Schema.js +7 -2
- package/package.json +1 -1
package/dist/Schema.js
CHANGED
|
@@ -287,8 +287,13 @@ function migrateEmbeddedObjects(oldDB, newDB) {
|
|
|
287
287
|
});
|
|
288
288
|
|
|
289
289
|
console.log(`deleting model: ChecklistItemStatus`);
|
|
290
|
-
newDB.deleteModel("ChecklistItemStatus");
|
|
291
|
-
|
|
290
|
+
newDB.deleteModel("ChecklistItemStatus");
|
|
291
|
+
console.log(`deleting model: VisitScheduleConfig`);
|
|
292
|
+
newDB.deleteModel("VisitScheduleConfig");
|
|
293
|
+
console.log(`deleting model: VisitScheduleInterval`);
|
|
294
|
+
newDB.deleteModel("VisitScheduleInterval");
|
|
295
|
+
console.log(`deleting model: StringKeyNumericValue`);
|
|
296
|
+
newDB.deleteModel("StringKeyNumericValue");
|
|
292
297
|
}
|
|
293
298
|
|
|
294
299
|
function createRealmConfig() {
|