Skip to content

Commit

Permalink
Merge pull request #179 from AI-READI/staging
Browse files Browse the repository at this point in the history
Fix prisma schema to allow for nullable `expires_at`
  • Loading branch information
ejdysinger authored Jan 15, 2025
2 parents 19cc5da + f4d8df8 commit b406414
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,7 @@ model download_request {
secure_hash String? @db.Char(64)
created_at BigInt
updated_on BigInt
expires_at BigInt
expires_at BigInt?
download_files download_files[]
published_dataset published_dataset @relation(fields: [dataset_id], references: [id], onDelete: NoAction, onUpdate: NoAction)
download_agreement download_agreement @relation(fields: [download_agreement_id], references: [id], onDelete: NoAction, onUpdate: NoAction)
Expand Down

0 comments on commit b406414

Please sign in to comment.