@cadenza.io/service 1.9.15 → 1.9.17
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/index.js +7 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2753,13 +2753,18 @@ var DatabaseController = class _DatabaseController {
|
|
|
2753
2753
|
this.deleteFunction.bind(this),
|
|
2754
2754
|
options
|
|
2755
2755
|
);
|
|
2756
|
+
return true;
|
|
2756
2757
|
},
|
|
2757
2758
|
"Generates auto-tasks for database schema"
|
|
2758
2759
|
).then(
|
|
2759
2760
|
CadenzaService.createUniqueMetaTask(
|
|
2760
2761
|
"Join table tasks",
|
|
2761
|
-
() =>
|
|
2762
|
-
|
|
2762
|
+
(ctx, emit) => {
|
|
2763
|
+
console.log("JOINING TABLE TASKS");
|
|
2764
|
+
emit("meta.database.setup_done", {});
|
|
2765
|
+
return true;
|
|
2766
|
+
}
|
|
2767
|
+
)
|
|
2763
2768
|
)
|
|
2764
2769
|
)
|
|
2765
2770
|
)
|