Files
Idea_Tracker_API/prisma/migrations/20260428010602_added_file_metadata/migration.sql
2026-04-27 22:16:17 -04:00

11 lines
401 B
SQL

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