add hubspot_listing_id to table

This commit is contained in:
Daniel Roth 2026-03-26 14:55:54 +00:00
parent a73e603fe3
commit f8870fea6e

View file

@ -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" })
}
);