File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 249249 'id ' => array ('integer not null primary key auto_increment ' , 'ID ' ),
250250 'date ' => array ('datetime ' , 'Date received ' ),
251251 'header ' => array ('text ' , 'Header of bounce ' ),
252- 'data ' => array ('blob ' , 'The bounce ' ),
252+ 'data ' => array ('mediumblob ' , 'The bounce ' ),
253253 'status ' => array ('varchar(255) ' , 'Status of this bounce ' ),
254254 'comment ' => array ('text ' , 'System Comment ' ),
255255 'index_1 ' => array ('dateindex (date) ' , '' ),
Original file line number Diff line number Diff line change @@ -309,6 +309,10 @@ function output($message)
309309
310310 }
311311
312+ if (version_compare ($ dbversion , '3.3.4 ' ,'< ' )) {
313+ Sql_Query ("alter table {$ GLOBALS ['tables ' ]['bounce ' ]} modify data mediumblob " );
314+ }
315+
312316 //# longblobs are better at mixing character encoding. We don't know the encoding of anything we may want to store in cache
313317 //# before converting, it's quickest to clear the cache
314318 clearPageCache ();
You can’t perform that action at this time.
0 commit comments