summaryrefslogtreecommitdiff
path: root/db/schema/procurementRFQ.ts
diff options
context:
space:
mode:
authorjoonhoekim <26rote@gmail.com>2025-08-04 11:27:55 +0000
committerjoonhoekim <26rote@gmail.com>2025-08-04 11:27:55 +0000
commit4f3948a66b34c5b14fabbc4e96245782b544c4d9 (patch)
treeb3f092d7ecc04aacc03e72435f6c568ad23f2cdb /db/schema/procurementRFQ.ts
parent305a29e0e245ed9de1a7f4d32e96634116dcda82 (diff)
(김준회) 빌드 오류 해결, non-sap sync 기반이므로 기준정보 생성/수정/삭제 기능 주석 처리
Diffstat (limited to 'db/schema/procurementRFQ.ts')
-rw-r--r--db/schema/procurementRFQ.ts6
1 files changed, 0 insertions, 6 deletions
diff --git a/db/schema/procurementRFQ.ts b/db/schema/procurementRFQ.ts
index ef1198bc..18cf5f9d 100644
--- a/db/schema/procurementRFQ.ts
+++ b/db/schema/procurementRFQ.ts
@@ -72,8 +72,6 @@ export const paymentTerms = pgTable("payment_terms", {
description: varchar("description", { length: 255 }).notNull(),
// days: integer("days").notNull(),
isActive: boolean("is_active").default(true).notNull(),
- createdBy: integer("created_by")
- .references(() => users.id, { onDelete: "set null" }),
createdAt: timestamp("created_at").defaultNow().notNull(),
});
@@ -82,8 +80,6 @@ export const incoterms = pgTable("incoterms", {
code: varchar("code", { length: 20 }).primaryKey(),
description: varchar("description", { length: 255 }).notNull(),
isActive: boolean("is_active").default(true).notNull(),
- createdBy: integer("created_by")
- .references(() => users.id, { onDelete: "set null" }),
createdAt: timestamp("created_at").defaultNow().notNull(),
});
@@ -92,8 +88,6 @@ export const placeOfShipping = pgTable("place_of_shipping", {
code: varchar("code", { length: 20 }).primaryKey(),
description: varchar("description", { length: 255 }).notNull(),
isActive: boolean("is_active").default(true).notNull(),
- createdBy: integer("created_by")
- .references(() => users.id, { onDelete: "set null" }),
createdAt: timestamp("created_at").defaultNow().notNull(),
});