@cadenza.io/service 1.9.14 → 1.9.16

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 CHANGED
@@ -2755,9 +2755,18 @@ var DatabaseController = class _DatabaseController {
2755
2755
  );
2756
2756
  },
2757
2757
  "Generates auto-tasks for database schema"
2758
+ ).then(
2759
+ CadenzaService.createUniqueMetaTask(
2760
+ "Join table tasks",
2761
+ (ctx, emit) => {
2762
+ console.log("JOINING TABLE TASKS");
2763
+ emit("meta.database.setup_done", {});
2764
+ return true;
2765
+ }
2766
+ )
2758
2767
  )
2759
2768
  )
2760
- ).emits("meta.database.setup_done")
2769
+ )
2761
2770
  )
2762
2771
  )
2763
2772
  )