summaryrefslogtreecommitdiff
path: root/db/schema/vendorData.ts
diff options
context:
space:
mode:
authorrlaks5757 <rlaks5757@gmail.com>2025-03-28 11:27:25 +0900
committerrlaks5757 <rlaks5757@gmail.com>2025-03-28 11:30:42 +0900
commitc4c3f12b4a6d1a3c09b797e1a160747cac8761e9 (patch)
tree8b376b5579ce7b5bc055d90d644a37295eb4c626 /db/schema/vendorData.ts
parent773918229ccb14c0d00798fbbf2b2be0130a8251 (diff)
template file download 개발 완료
Diffstat (limited to 'db/schema/vendorData.ts')
-rw-r--r--db/schema/vendorData.ts19
1 files changed, 0 insertions, 19 deletions
diff --git a/db/schema/vendorData.ts b/db/schema/vendorData.ts
index 2739e8eb..01a10b7e 100644
--- a/db/schema/vendorData.ts
+++ b/db/schema/vendorData.ts
@@ -238,19 +238,11 @@ import {
createdAt: timestamp("created_at", { withTimezone: true }),
updatedAt: timestamp("updated_at", { withTimezone: true }),
-<<<<<<< HEAD
});
export type ViewTagSubfields = typeof viewTagSubfields.$inferSelect;
export const vendorDataReportTemps = pgTable("vendor_data_report_temps", {
-=======
-})
-
-export type ViewTagSubfields = typeof viewTagSubfields.$inferSelect
-
-export const vendorDataReportTemps = pgTable("vendor_data_report_temps", {
->>>>>>> dev
id: serial("id").primaryKey(),
contractItemId: integer("contract_item_id")
.notNull()
@@ -261,7 +253,6 @@ export const vendorDataReportTemps = pgTable("vendor_data_report_temps", {
fileName: varchar("file_name", { length: 255 }).notNull(),
filePath: varchar("file_path", { length: 1024 }).notNull(),
createdAt: timestamp("created_at", { withTimezone: true })
-<<<<<<< HEAD
.defaultNow()
.notNull(),
updatedAt: timestamp("updated_at", { withTimezone: true })
@@ -271,13 +262,3 @@ export const vendorDataReportTemps = pgTable("vendor_data_report_temps", {
export type VendorDataReportTemps = typeof vendorDataReportTemps.$inferSelect;
-=======
- .defaultNow()
- .notNull(),
- updatedAt: timestamp("updated_at", { withTimezone: true })
- .defaultNow()
- .notNull(),
- });
-
- export type VendorDataReportTemps = typeof vendorDataReportTemps.$inferSelect;
->>>>>>> dev