Add field name_from

This commit is contained in:
Laurent Destailleur 2023-04-09 13:04:37 +02:00
parent 8f3bd5ab07
commit f4d60d0b70
2 changed files with 6 additions and 4 deletions

View File

@ -390,4 +390,5 @@ ALTER TABLE llx_c_email_templates add COLUMN defaultfortype smallint DEFAULT 0;
ALTER TABLE llx_mailing ADD COLUMN fk_user_modif integer AFTER fk_user_creat;
ALTER TABLE llx_mailing ADD COLUMN evenunsubscribe smallint DEFAULT 0;
ALTER TABLE llx_mailing ADD COLUMN name_from varchar(128) AFTER email_from;

View File

@ -18,10 +18,10 @@
-- ========================================================================
-- redaction : 0
-- valide : 1
-- approuve : 2
-- envoye : 3
-- draft : 0
-- valid : 1
-- approved : 2
-- sent : 3
create table llx_mailing
(
@ -37,6 +37,7 @@ create table llx_mailing
cible varchar(60),
nbemail integer,
email_from varchar(160), -- Email address of sender
name_from varchar(128), -- Name to show of sender
email_replyto varchar(160), -- Email address for reply
email_errorsto varchar(160), -- Email addresse for errors
tag varchar(128) NULL,