aboutsummaryrefslogtreecommitdiffstats
path: root/prisma/migrations/20240128192510_update_document_urls
diff options
context:
space:
mode:
Diffstat (limited to 'prisma/migrations/20240128192510_update_document_urls')
-rw-r--r--prisma/migrations/20240128192510_update_document_urls/migration.sql9
1 files changed, 9 insertions, 0 deletions
diff --git a/prisma/migrations/20240128192510_update_document_urls/migration.sql b/prisma/migrations/20240128192510_update_document_urls/migration.sql
new file mode 100644
index 0000000..1f12259
--- /dev/null
+++ b/prisma/migrations/20240128192510_update_document_urls/migration.sql
@@ -0,0 +1,9 @@
+/*
+ Warnings:
+
+ - The `documentUrls` column on the `Expense` table would be dropped and recreated. This will lead to data loss if there is data in the column.
+
+*/
+-- AlterTable
+ALTER TABLE "Expense" DROP COLUMN "documentUrls",
+ADD COLUMN "documentUrls" JSONB[] DEFAULT ARRAY[]::JSONB[];