Skip to content

Commit

Permalink
email signature now text instead of varchar - may hold more data. close
Browse files Browse the repository at this point in the history
  • Loading branch information
j-dimension committed Nov 7, 2023
1 parent 86bbb3f commit c398144
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ public class MailboxSetup implements Serializable, EventTypes {
protected String emailOutPort;
@Column(name = "emailSenderName")
protected String emailSenderName;
@Column(name = "emailSignature")
@Column(name = "emailSignature", columnDefinition = "TEXT")
protected String emailSignature;
@Column(name = "emailInSsl", columnDefinition = "TINYINT")
protected boolean emailInSsl;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
alter table mailbox_setup modify emailSignature TEXT default null;
insert into server_settings(settingKey, settingValue) values('jlawyer.server.database.version','2.6.0.3') ON DUPLICATE KEY UPDATE settingValue = '2.6.0.3';
commit;

0 comments on commit c398144

Please sign in to comment.