Is it possible to change the attachment column type from varchar(255) to text? Many attachments with large path names are causing issues otherwise.
diff --git a/ext_tables.sql b/ext_tables.sql
index f4eedf6..4839f79 100644
--- a/ext_tables.sql
+++ b/ext_tables.sql
@@ -7,7 +7,7 @@ CREATE TABLE tx_wpmailqueue_domain_model_mail (
recipient varchar(255) DEFAULT '' NOT NULL,
cc varchar(255) DEFAULT '' NOT NULL,
bcc varchar(255) DEFAULT '' NOT NULL,
- attachements varchar(255) DEFAULT '' NOT NULL,
+ attachements text DEFAULT '' NOT NULL,
date_sent int(11) DEFAULT 0 NOT NULL,
type varchar(255) DEFAULT '' NOT NULL
Is it possible to change the attachment column type from varchar(255) to text? Many attachments with large path names are causing issues otherwise.
Possible Solution: