landlordPropertyId not notNull

This commit is contained in:
Daniel Roth 2026-03-26 11:39:53 +00:00
parent e9ce7896e5
commit a73e603fe3

View file

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