mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-08 11:37:25 +00:00
peace and harmony now
This commit is contained in:
parent
659d6c50a6
commit
93ca024c40
4 changed files with 6915 additions and 3 deletions
|
|
@ -1,2 +1,2 @@
|
|||
ALTER TABLE "bulk_address_uploads" ADD COLUMN "task_id" uuid;--> statement-breakpoint
|
||||
ALTER TABLE "bulk_address_uploads" ADD COLUMN "combined_output_s3_uri" text;
|
||||
ALTER TABLE "bulk_address_uploads" ADD COLUMN "combined_output_s3_uri" text;
|
||||
6910
src/app/db/migrations/meta/0179_snapshot.json
Normal file
6910
src/app/db/migrations/meta/0179_snapshot.json
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -1258,8 +1258,8 @@
|
|||
{
|
||||
"idx": 179,
|
||||
"version": "7",
|
||||
"when": 1776500000000,
|
||||
"tag": "0179_restore_bulk_upload_columns",
|
||||
"when": 1776459924335,
|
||||
"tag": "0179_mighty_cardiac",
|
||||
"breakpoints": true
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -11,6 +11,8 @@ export const bulkAddressUploads = pgTable("bulk_address_uploads", {
|
|||
status: text("status").notNull().default("ready_for_processing"),
|
||||
sourceHeaders: text("source_headers").array().notNull().default(sql`'{}'`),
|
||||
columnMapping: jsonb("column_mapping").$type<Record<string, string>>(),
|
||||
taskId: uuid("task_id"),
|
||||
combinedOutputS3Uri: text("combined_output_s3_uri"),
|
||||
createdAt: timestamp("created_at", { withTimezone: true }).notNull().defaultNow(),
|
||||
updatedAt: timestamp("updated_at", { withTimezone: true })
|
||||
.notNull()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue