Initial commit in this repository

This commit is contained in:
Rapturate
2026-04-27 22:16:17 -04:00
commit 68e7058ca4
64 changed files with 20817 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
/*
Warnings:
- Added the required column `mimeType` to the `files` table without a default value. This is not possible if the table is not empty.
- Added the required column `size` to the `files` table without a default value. This is not possible if the table is not empty.
*/
-- AlterTable
ALTER TABLE "files" ADD COLUMN "mimeType" TEXT NOT NULL,
ADD COLUMN "size" INTEGER NOT NULL;