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