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
All checks were successful
Deploy tt-tagebuch / deploy (push) Successful in 52s
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user