file-uploader/prisma/migrations/20240829085742_thumbnails/migration.sql

11 lines
387 B
MySQL
Raw Normal View History

2024-08-29 10:24:27 +00:00
/*
Warnings:
- You are about to drop the column `placeholder` on the `Thumbnail` table. All the data in the column will be lost.
- Added the required column `fileName` to the `Thumbnail` table without a default value. This is not possible if the table is not empty.
*/
-- AlterTable
ALTER TABLE `Thumbnail` DROP COLUMN `placeholder`,
ADD COLUMN `fileName` LONGTEXT NOT NULL;