Add attachments column to data requests table

This commit is contained in:
2026-05-16 03:15:45 -04:00
parent 73b6c85171
commit db4fe139df
2 changed files with 3 additions and 0 deletions
@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "data_requests" ADD COLUMN "attachments" JSONB;
+1
View File
@@ -30,6 +30,7 @@ model AppealBan {
}
model DataRequest {
attachments Json?
created_at DateTime @default(now())
id String @id @unique
originating_user Int?