From 470921c0df5988475bbca47d8b18e61f43a915c3 Mon Sep 17 00:00:00 2001 From: Methapon2001 <61303214+Methapon2001@users.noreply.github.com> Date: Mon, 24 Feb 2025 11:28:15 +0700 Subject: [PATCH] feat: set credit note status default to waiting --- prisma/schema.prisma | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prisma/schema.prisma b/prisma/schema.prisma index 804702b..5cfd276 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -1624,7 +1624,7 @@ model CreditNote { code String - creditNoteStatus CreditNoteStatus @default(Pending) + creditNoteStatus CreditNoteStatus @default(Waiting) value Float @default(0) reason String?