2
0

🦴 Add settings page backbone

This commit is contained in:
Baptiste Arnaud
2021-12-23 13:49:24 +01:00
parent 4d8056dfe8
commit 79aede1f3f
14 changed files with 238 additions and 12 deletions

View File

@ -0,0 +1,12 @@
/*
Warnings:
- Added the required column `settings` to the `PublicTypebot` table without a default value. This is not possible if the table is not empty.
- Added the required column `settings` to the `Typebot` table without a default value. This is not possible if the table is not empty.
*/
-- AlterTable
ALTER TABLE "PublicTypebot" ADD COLUMN "settings" JSONB NOT NULL;
-- AlterTable
ALTER TABLE "Typebot" ADD COLUMN "settings" JSONB NOT NULL;

View File

@ -90,6 +90,7 @@ model Typebot {
blocks Json[]
startBlock Json
theme Json
settings Json
}
model PublicTypebot {
@ -100,6 +101,7 @@ model PublicTypebot {
blocks Json[]
startBlock Json
theme Json
settings Json
}
model Result {