Merge remote-tracking branch 'origin/main'

This commit is contained in:
2026-01-18 18:42:19 +01:00
3 changed files with 20 additions and 15 deletions

View File

@@ -1,7 +1,9 @@
create table app_user
(
email_on_comment_added boolean not null,
email_on_form_created boolean not null,
email_on_form_submitted boolean not null,
email_on_form_updated boolean not null,
created_at timestamp(6) with time zone not null,
modified_at timestamp(6) with time zone not null,
email varchar(255),
@@ -119,16 +121,17 @@ create table form_element_sub_section
create table notification
(
is_read boolean not null,
created_at timestamp(6) with time zone not null,
id uuid not null,
click_target varchar(255) not null,
message TEXT not null,
organization_id varchar(255) not null,
recipient_id varchar(255),
target_roles TEXT,
title varchar(255) not null,
type varchar(255) not null check (type in ('INFO', 'WARNING', 'ERROR')),
is_read boolean not null,
created_at timestamp(6) with time zone not null,
id uuid not null,
click_target varchar(255) not null,
excluded_user_id varchar(255),
message TEXT not null,
organization_id varchar(255) not null,
recipient_id varchar(255),
target_roles TEXT,
title varchar(255) not null,
type varchar(255) not null check (type in ('INFO', 'WARNING', 'ERROR')),
primary key (id)
);