Add image upload and edit functions

This commit is contained in:
2025-12-20 16:34:50 +01:00
parent 96fa12993b
commit dfb6f7042a
72 changed files with 7413 additions and 81 deletions

View File

@ -0,0 +1,12 @@
/*
Warnings:
- You are about to drop the column `uploadDate` on the `FileVariant` table. All the data in the column will be lost.
- Added the required column `uploadDate` to the `FileData` table without a default value. This is not possible if the table is not empty.
*/
-- AlterTable
ALTER TABLE "FileData" ADD COLUMN "uploadDate" TIMESTAMP(3) NOT NULL;
-- AlterTable
ALTER TABLE "FileVariant" DROP COLUMN "uploadDate";