From b63d886613707c99cb4b244c8442860c2a15af69 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Sun, 15 Jun 2025 04:43:44 +0000 Subject: (최겸) 메뉴 및 DB 수정(기술영업 벤더, RFQ, User) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- db/schema/techVendors.ts | 6 ------ 1 file changed, 6 deletions(-) (limited to 'db/schema/techVendors.ts') 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, -- cgit v1.2.3