2025-01-17 19:44:36 +05:00

10 lines
268 B
SQL

/*
Warnings:
- You are about to drop the column `isBackground` on the `Product` table. All the data in the column will be lost.
*/
-- AlterTable
ALTER TABLE `Product` DROP COLUMN `isBackground`,
ADD COLUMN `isBackgroundColor` BOOLEAN NOT NULL DEFAULT false;