14 lines
338 B
SQL
14 lines
338 B
SQL
/*
|
|
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;
|