mirror of
https://github.com/spliit-app/spliit.git
synced 2026-02-11 01:56:13 +01:00
* Upload documents to receipts * Improve documents * Make the feature opt-in * Fix file name issue
10 lines
293 B
SQL
10 lines
293 B
SQL
/*
|
|
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[];
|