chore: migration

This commit is contained in:
Methapon2001 2025-01-09 17:04:21 +07:00
parent af20c3fab2
commit 6a86dfd9ad

View file

@ -0,0 +1,5 @@
-- CreateEnum
CREATE TYPE "PaybackStatus" AS ENUM ('Pending', 'Verify', 'Done');
-- AlterTable
ALTER TABLE "CreditNote" ADD COLUMN "paybackStatus" "PaybackStatus" NOT NULL DEFAULT 'Pending';