/* Warnings: - You are about to drop the column `created` on the `Folder` table. All the data in the column will be lost. - You are about to drop the column `updated` on the `Folder` table. All the data in the column will be lost. - Added the required column `poster` to the `Folder` table without a default value. This is not possible if the table is not empty. - Added the required column `updatedAt` to the `Folder` table without a default value. This is not possible if the table is not empty.*/-- AlterTableALTERTABLE`Folder`DROPCOLUMN`created`,DROPCOLUMN`updated`,ADDCOLUMN`createdAt`DATETIME(3)NOTNULLDEFAULTCURRENT_TIMESTAMP(3),ADDCOLUMN`poster`VARCHAR(191)NOTNULL,ADDCOLUMN`updatedAt`DATETIME(3)NOTNULL;