mirror of
https://github.com/spliit-app/spliit.git
synced 2026-02-24 00:16:13 +01:00
* Upload documents to receipts * Improve documents * Make the feature opt-in * Fix file name issue
11 lines
432 B
SQL
11 lines
432 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `height` to the `ExpenseDocument` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `width` to the `ExpenseDocument` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "ExpenseDocument" ADD COLUMN "height" INTEGER NOT NULL,
|
|
ADD COLUMN "width" INTEGER NOT NULL;
|