aboutsummaryrefslogtreecommitdiffstats
path: root/prisma/migrations/20240128192510_update_document_urls/migration.sql
blob: 1f1225926fac044369154a615f659acfd144f4f9 (plain)
1
2
3
4
5
6
7
8
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[];