jws-backend/prisma/migrations/20240613084622_add_custom_attributes_json/migration.sql

15 lines
338 B
MySQL
Raw Normal View History

2024-06-13 15:47:11 +07:00
/*
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;