From f1b66c184b8c85e8be9eecf14126977dd9668461 Mon Sep 17 00:00:00 2001 From: Denis Lugowski Date: Sat, 6 Dec 2025 10:33:00 +0100 Subject: [PATCH] fix(#25): Update database sql schema --- .../src/main/resources/db/migrations/001-schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legalconsenthub-backend/src/main/resources/db/migrations/001-schema.sql b/legalconsenthub-backend/src/main/resources/db/migrations/001-schema.sql index 27df93d..dad7427 100644 --- a/legalconsenthub-backend/src/main/resources/db/migrations/001-schema.sql +++ b/legalconsenthub-backend/src/main/resources/db/migrations/001-schema.sql @@ -63,7 +63,7 @@ create table form_element_options create table form_element ( form_element_order integer, - type smallint not null check (type between 0 and 5), + type smallint not null check (type between 0 and 6), form_element_sub_section_id uuid not null, id uuid not null, condition_type varchar(255) check (condition_type in ('SHOW', 'HIDE')),