From ef0d4e58367a35d625bc426043625fa6252224fd Mon Sep 17 00:00:00 2001 From: avicenan Date: Fri, 27 Mar 2026 16:08:28 +0700 Subject: [PATCH] chore(schema): add card type and payment method --- src/schema/public.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/schema/public.ts b/src/schema/public.ts index c3db69c..5c53615 100644 --- a/src/schema/public.ts +++ b/src/schema/public.ts @@ -38,6 +38,8 @@ export * from "../entity/user_to_room" export * from "../entity/refferal_hospital" export * from "../entity/room_to_pharmacy" export * from "../entity/faretype" +export * from "../entity/card_type" +export * from "../entity/payment_method" export * from "../types/action"; export * from "../types/error";