2
0
Files
bot/packages/db/prisma/migrations/20211223124908_add_settings/migration.sql
2021-12-23 13:49:24 +01:00

13 lines
463 B
SQL

/*
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;