From 2aa5875f3c1618a084248e2acb40d388eb7d0d18 Mon Sep 17 00:00:00 2001 From: avicenan Date: Mon, 4 May 2026 16:19:11 +0700 Subject: [PATCH] fix(notif): move notif table to public schema --- src/index.ts | 3 +-- src/schema/notification.ts | 1 - src/schema/public.ts | 1 + 3 files changed, 2 insertions(+), 3 deletions(-) delete mode 100644 src/schema/notification.ts diff --git a/src/index.ts b/src/index.ts index 49f486c..f41acf1 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,5 +5,4 @@ export * from "./schema/finances"; export * from "./schema/procurement"; export * from "./schema/pharmacy"; export * from "./schema/pharmacy_logistic"; -export * from "./schema/cashier"; -export * from "./schema/notification"; \ No newline at end of file +export * from "./schema/cashier"; \ No newline at end of file diff --git a/src/schema/notification.ts b/src/schema/notification.ts deleted file mode 100644 index 208f85a..0000000 --- a/src/schema/notification.ts +++ /dev/null @@ -1 +0,0 @@ -export * from "../entity/notification"; diff --git a/src/schema/public.ts b/src/schema/public.ts index 3c3247a..89fea2b 100644 --- a/src/schema/public.ts +++ b/src/schema/public.ts @@ -53,6 +53,7 @@ export * from "../entity/subdistrict"; export * from "../entity/ward"; export * from "../entity/responsible_party_consent"; export * from "../entity/foster_care_history"; +export * from "../entity/notification"; export * from "../types/public"; export * from "../types/action";