odin-codespace/file-uploader/prisma/migrations/20250417214032_init/migration.sql

10 lines
398 B
SQL

/*
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;