From 90b80d861cfd8ba239df395eecf87656e73c1e5f Mon Sep 17 00:00:00 2001 From: joonhoekim <26rote@gmail.com> Date: Tue, 2 Dec 2025 15:32:37 +0900 Subject: (김준회) 서버액션에 인가를 추가하기 위한 유틸리티 함수 추가 (HOF Pattern) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- db/schema/rfqLast.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'db') diff --git a/db/schema/rfqLast.ts b/db/schema/rfqLast.ts index 325942f4..98348439 100644 --- a/db/schema/rfqLast.ts +++ b/db/schema/rfqLast.ts @@ -264,7 +264,7 @@ export const rfqPrItems = pgTable( size: varchar("size", { length: 255 }), deliveryDate: date("delivery_date", { mode: "date" }) .$type(), - quantity: numeric("quantity", { precision: 12, scale: 2 }) + quantity: numeric("quantity", { precision: 12, scale: 3 }) .$type() .default(1), uom: varchar("uom", { length: 50 }), // 단위 -- cgit v1.2.3