file-uploader/prisma/migrations/20240829085742_thumbnails/migration.sql
2024-08-29 06:24:27 -04:00

10 lines
387 B
SQL

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