summaryrefslogtreecommitdiff
path: root/db/schema/rfqLast.ts
diff options
context:
space:
mode:
Diffstat (limited to 'db/schema/rfqLast.ts')
-rw-r--r--db/schema/rfqLast.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/schema/rfqLast.ts b/db/schema/rfqLast.ts
index b58341c5..21d94b39 100644
--- a/db/schema/rfqLast.ts
+++ b/db/schema/rfqLast.ts
@@ -260,6 +260,11 @@ export const rfqPrItems = pgTable(
grossWeight: numeric("gross_weight", { precision: 12, scale: 2 })
.$type<number>()
.default(1),
+ // 구매 요구사항: 소수점 3자리로 변경 요청.
+ // 해당 스키마 적용 시 drop prItemsLastView 후 재생성 필요.
+ // grossWeight: numeric("gross_weight", { precision: 12, scale: 3 })
+ // .$type<number>()
+ // .default(1),
gwUom: varchar("gw_uom", { length: 50 }), // 단위
specNo: varchar("spec_no", { length: 255 }),