/*
  Warnings:

  - You are about to drop the column `fileSizeMb` on the `Product` table. All the data in the column will be lost.
  - Added the required column `translations` to the `Product` table without a default value. This is not possible if the table is not empty.
  - Added the required column `translations` to the `ProductCategory` table without a default value. This is not possible if the table is not empty.

*/
-- AlterTable
ALTER TABLE `Product` DROP COLUMN `fileSizeMb`,
    ADD COLUMN `translations` JSON NOT NULL;

-- AlterTable
ALTER TABLE `ProductCategory` ADD COLUMN `translations` JSON NOT NULL;
