15 lines
338 B
MySQL
15 lines
338 B
MySQL
|
|
/*
|
||
|
|
Warnings:
|
||
|
|
|
||
|
|
- You are about to drop the column `attributes` on the `Product` table. All the data in the column will be lost.
|
||
|
|
|
||
|
|
*/
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE "Product" DROP COLUMN "attributes";
|
||
|
|
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE "Service" ADD COLUMN "attributes" JSONB;
|
||
|
|
|
||
|
|
-- AlterTable
|
||
|
|
ALTER TABLE "Work" ADD COLUMN "attributes" JSONB;
|