peace and harmony now

This commit is contained in:
Jun-te Kim 2026-04-17 21:06:01 +00:00
parent 659d6c50a6
commit 93ca024c40
4 changed files with 6915 additions and 3 deletions

View file

@ -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;

File diff suppressed because it is too large Load diff

View file

@ -1258,8 +1258,8 @@
{
"idx": 179,
"version": "7",
"when": 1776500000000,
"tag": "0179_restore_bulk_upload_columns",
"when": 1776459924335,
"tag": "0179_mighty_cardiac",
"breakpoints": true
}
]

View file

@ -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()