summaryrefslogtreecommitdiff
path: root/db/schema/techVendors.ts
diff options
context:
space:
mode:
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,