From f8870fea6ec8d7ba554a846bcc2c4b188ddded53 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Thu, 26 Mar 2026 14:55:54 +0000 Subject: [PATCH] add hubspot_listing_id to table --- src/app/db/schema/uploaded_files.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/db/schema/uploaded_files.ts b/src/app/db/schema/uploaded_files.ts index ae5a058..498473c 100644 --- a/src/app/db/schema/uploaded_files.ts +++ b/src/app/db/schema/uploaded_files.ts @@ -9,6 +9,7 @@ export const uploadedFiles = pgTable( withTimezone: true }).notNull(), landlordPropertyId: text("landlord_property_id"), - uprn: bigint("uprn", { mode: "bigint" }) + uprn: bigint("uprn", { mode: "bigint" }), + hubspotListingId: bigint("hubspot_listing_id", { mode: "bigint" }) } ); \ No newline at end of file