diff options
| author | joonhoekim <26rote@gmail.com> | 2025-12-02 15:32:37 +0900 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-12-02 15:32:37 +0900 |
| commit | 90b80d861cfd8ba239df395eecf87656e73c1e5f (patch) | |
| tree | ea79be1e03607bd027ce8a02633827180629de57 /db | |
| parent | a29cdcb808f8928dd16092b3314c593555be97c0 (diff) | |
(김준회) 서버액션에 인가를 추가하기 위한 유틸리티 함수 추가 (HOF Pattern)
Diffstat (limited to 'db')
| -rw-r--r-- | db/schema/rfqLast.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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<Date>(), - quantity: numeric("quantity", { precision: 12, scale: 2 }) + quantity: numeric("quantity", { precision: 12, scale: 3 }) .$type<number>() .default(1), uom: varchar("uom", { length: 50 }), // 단위 |
