aboutsummaryrefslogtreecommitdiffstats
path: root/prisma/migrations/20231207005126_reimbursement
diff options
context:
space:
mode:
authorSebastien Castiel <sebastien@castiel.me>2023-12-06 20:21:26 -0500
committerSebastien Castiel <sebastien@castiel.me>2023-12-06 20:21:26 -0500
commit57899b0160385c53df4e43ef2fd12492e0dffb77 (patch)
tree83f616c406c2d37aec2250bb0c44fcb8d701c177 /prisma/migrations/20231207005126_reimbursement
parent6ce2329f5ce20f8352e3ea15594f2532ab8a392c (diff)
Reimbursements
Diffstat (limited to 'prisma/migrations/20231207005126_reimbursement')
-rw-r--r--prisma/migrations/20231207005126_reimbursement/migration.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/prisma/migrations/20231207005126_reimbursement/migration.sql b/prisma/migrations/20231207005126_reimbursement/migration.sql
new file mode 100644
index 0000000..2c6b1c6
--- /dev/null
+++ b/prisma/migrations/20231207005126_reimbursement/migration.sql
@@ -0,0 +1,2 @@
+-- AlterTable
+ALTER TABLE "Expense" ADD COLUMN "isReimbursement" BOOLEAN NOT NULL DEFAULT false;