Fix DB table donasi:

- Relasi ke master bank dengan nilai default NULL

### No issue
This commit is contained in:
2025-12-17 14:43:09 +08:00
parent fc3ee6724e
commit 3e0d2743fb
2 changed files with 3 additions and 1 deletions

View File

@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "Donasi_Invoice" ALTER COLUMN "masterBankId" DROP DEFAULT;

View File

@@ -587,7 +587,7 @@ model Donasi_Invoice {
imageId String?
MasterBank MasterBank? @relation(fields: [masterBankId], references: [id])
masterBankId String? @default("null")
masterBankId String?
}
model Donasi_Kabar {