From a73e603fe3cee66913b46d07e35fa534892645a0 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Thu, 26 Mar 2026 11:39:53 +0000 Subject: [PATCH] landlordPropertyId not notNull --- src/app/db/schema/uploaded_files.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/db/schema/uploaded_files.ts b/src/app/db/schema/uploaded_files.ts index 1ecb0a2..ae5a058 100644 --- a/src/app/db/schema/uploaded_files.ts +++ b/src/app/db/schema/uploaded_files.ts @@ -8,7 +8,7 @@ export const uploadedFiles = pgTable( s3UploadTimestamp: timestamp("s3_upload_timestamp", { withTimezone: true }).notNull(), - landlordPropertyId: text("landlord_property_id").notNull(), + landlordPropertyId: text("landlord_property_id"), uprn: bigint("uprn", { mode: "bigint" }) } ); \ No newline at end of file