13 lines
451 B
SQL
13 lines
451 B
SQL
/*
|
|
Warnings:
|
|
|
|
- Added the required column `theme` to the `PublicTypebot` table without a default value. This is not possible if the table is not empty.
|
|
- Added the required column `theme` to the `Typebot` table without a default value. This is not possible if the table is not empty.
|
|
|
|
*/
|
|
-- AlterTable
|
|
ALTER TABLE "PublicTypebot" ADD COLUMN "theme" JSONB NOT NULL;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "Typebot" ADD COLUMN "theme" JSONB NOT NULL;
|