jws-backend/prisma/migrations/20240614095339_update_product_fields/migration.sql

11 lines
338 B
MySQL
Raw Normal View History

2024-06-14 16:53:48 +07:00
/*
Warnings:
- Changed the type of `process` on the `Product` table. No cast exists, the column would be dropped and recreated, which cannot be done if there is data, since the column is required.
*/
-- AlterTable
ALTER TABLE "Product" ADD COLUMN "remark" TEXT,
DROP COLUMN "process",
ADD COLUMN "process" INTEGER NOT NULL;