summaryrefslogtreecommitdiff
path: root/db/schema/techVendors.ts
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-06-15 04:43:44 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-06-15 04:43:44 +0000
commitb63d886613707c99cb4b244c8442860c2a15af69 (patch)
tree4e33596a626f9dba47836a207b456a86eef5b977 /db/schema/techVendors.ts
parenta15475296b9da1cb83995b24acf9a6a20b635756 (diff)
(최겸) 메뉴 및 DB 수정(기술영업 벤더, RFQ, User)
Diffstat (limited to 'db/schema/techVendors.ts')
-rw-r--r--db/schema/techVendors.ts6
1 files changed, 0 insertions, 6 deletions
diff --git a/db/schema/techVendors.ts b/db/schema/techVendors.ts
index dcf73611..9cb15ad8 100644
--- a/db/schema/techVendors.ts
+++ b/db/schema/techVendors.ts
@@ -38,11 +38,6 @@ export const techVendors = pgTable("tech_vendors", {
representativeEmail: varchar("representative_email", { length: 255 }),
representativePhone: varchar("representative_phone", { length: 50 }),
representativeBirth: varchar("representative_birth", { length: 20 }),
-
- // 사업자등록번호
- corporateRegistrationNumber: varchar("corporate_registration_number", {
- length: 100,
- }),
items: text("items"),
createdAt: timestamp("created_at").defaultNow().notNull(),
updatedAt: timestamp("updated_at").defaultNow().notNull(),
@@ -121,7 +116,6 @@ export const techVendorDetailView = pgView("tech_vendor_detail_view").as((qb) =>
representativeEmail: techVendors.representativeEmail,
representativePhone: techVendors.representativePhone,
representativeBirth: techVendors.representativeBirth,
- corporateRegistrationNumber: techVendors.corporateRegistrationNumber,
createdAt: techVendors.createdAt,
updatedAt: techVendors.updatedAt,