openchs-models 1.31.27 → 1.31.29
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 +9 -2
- package/package.json +1 -1
package/dist/Schema.js
CHANGED
|
@@ -287,8 +287,15 @@ 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: ProgramConfig`);
|
|
292
|
+
newDB.deleteModel("ProgramConfig");
|
|
293
|
+
console.log(`deleting model: VisitScheduleConfig`);
|
|
294
|
+
newDB.deleteModel("VisitScheduleConfig");
|
|
295
|
+
console.log(`deleting model: VisitScheduleInterval`);
|
|
296
|
+
newDB.deleteModel("VisitScheduleInterval");
|
|
297
|
+
console.log(`deleting model: StringKeyNumericValue`);
|
|
298
|
+
newDB.deleteModel("StringKeyNumericValue");
|
|
292
299
|
}
|
|
293
300
|
|
|
294
301
|
function createRealmConfig() {
|