fix(notif): move notif table to public schema

This commit is contained in:
avicenan
2026-05-04 16:19:11 +07:00
parent a23670a3c1
commit 2aa5875f3c
3 changed files with 2 additions and 3 deletions

View File

@ -5,5 +5,4 @@ export * from "./schema/finances";
export * from "./schema/procurement"; export * from "./schema/procurement";
export * from "./schema/pharmacy"; export * from "./schema/pharmacy";
export * from "./schema/pharmacy_logistic"; export * from "./schema/pharmacy_logistic";
export * from "./schema/cashier"; export * from "./schema/cashier";
export * from "./schema/notification";

View File

@ -1 +0,0 @@
export * from "../entity/notification";

View File

@ -53,6 +53,7 @@ export * from "../entity/subdistrict";
export * from "../entity/ward"; export * from "../entity/ward";
export * from "../entity/responsible_party_consent"; export * from "../entity/responsible_party_consent";
export * from "../entity/foster_care_history"; export * from "../entity/foster_care_history";
export * from "../entity/notification";
export * from "../types/public"; export * from "../types/public";
export * from "../types/action"; export * from "../types/action";