11 lines
265 B
SQL
11 lines
265 B
SQL
/*
|
|
Warnings:
|
|
|
|
- You are about to drop the column `imageUrl` on the `Product` table. All the data in the column will be lost.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "EmployeeWork" ADD COLUMN "remark" TEXT;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "Product" DROP COLUMN "imageUrl";
|