-- CreateEnum
CREATE TYPE "WidgetRenderMode" AS ENUM ('hosted', 'custom');

-- AlterTable
ALTER TABLE "booking_widget_configs" ADD COLUMN     "custom_template" TEXT,
ADD COLUMN     "custom_template_contract_version" VARCHAR(20),
ADD COLUMN     "custom_template_validated_at" TIMESTAMPTZ(6),
ADD COLUMN     "render_mode" "WidgetRenderMode" NOT NULL DEFAULT 'hosted';
