2
0
Files
bot/packages/db/prisma/migrations/20211216093901_init_graph_properites/migration.sql
Baptiste Arnaud da9459edf3 Add Graph draft
2021-12-16 10:51:59 +01:00

15 lines
537 B
SQL

/*
Warnings:
- Added the required column `startBlock` to the `PublicTypebot` table without a default value. This is not possible if the table is not empty.
- Added the required column `startBlock` to the `Typebot` table without a default value. This is not possible if the table is not empty.
*/
-- AlterTable
ALTER TABLE "PublicTypebot" ADD COLUMN "blocks" JSONB[],
ADD COLUMN "startBlock" JSONB NOT NULL;
-- AlterTable
ALTER TABLE "Typebot" ADD COLUMN "blocks" JSONB[],
ADD COLUMN "startBlock" JSONB NOT NULL;