feat: add optional reply address to communication threads and enhance email transport status handling
All checks were successful
Deploy tt-tagebuch / deploy (push) Successful in 52s

This commit is contained in:
Torsten Schulz (local)
2026-07-22 15:28:39 +02:00
parent fd0b3020bf
commit d190c2cb70
8 changed files with 140 additions and 4 deletions

View File

@@ -91,6 +91,7 @@ CREATE TABLE IF NOT EXISTS `club_communication_threads` (
`club_id` bigint NOT NULL,
`thread_type` varchar(32) NOT NULL DEFAULT 'direct',
`subject` varchar(255) NOT NULL,
`reply_to` varchar(320) DEFAULT NULL,
`status` varchar(32) NOT NULL DEFAULT 'draft',
`created_by_user_id` bigint NULL,
`distribution_group_id` bigint NULL,

View File

@@ -99,6 +99,7 @@ CREATE TABLE IF NOT EXISTS club_communication_threads (
club_id bigint NOT NULL,
thread_type varchar(32) NOT NULL DEFAULT 'direct',
subject varchar(255) NOT NULL,
reply_to varchar(320),
status varchar(32) NOT NULL DEFAULT 'draft',
created_by_user_id bigint,
distribution_group_id bigint,