@@ -124,6 +124,8 @@ CREATE TABLE IF NOT EXISTS `maillog` (
124124 ` time` time DEFAULT NULL ,
125125 ` headers` mediumtext COLLATE utf8_unicode_ci,
126126 ` quarantined` tinyint (1 ) DEFAULT ' 0' ,
127+ ` rblspamreport` mediumtext COLLATE utf8_unicode_ci DEFAULT NULL ,
128+ ` token` CHAR (64 ) COLLATE utf8_unicode_ci DEFAULT NULL ,
127129 PRIMARY KEY (` maillog_id` ),
128130 KEY ` maillog_datetime_idx` (` date` ,` time` ),
129131 KEY ` maillog_id_idx` (` id` (20 )),
@@ -134,8 +136,8 @@ CREATE TABLE IF NOT EXISTS `maillog` (
134136 KEY ` from_domain_idx` (` from_domain` (50 )),
135137 KEY ` to_domain_idx` (` to_domain` (50 )),
136138 KEY ` maillog_quarantined` (` quarantined` ),
137- KEY ` timestamp_idx` (` timestamp` ),
138- FULLTEXT KEY ` subject_idx` (` subject` )
139+ KEY ` timestamp_idx` (` timestamp` )
140+ /* !50604 , FULLTEXT KEY `subject_idx` (`subject`) */
139141) ENGINE= InnoDB DEFAULT CHARSET= utf8 COLLATE= utf8_unicode_ci;
140142
141143-- --------------------------------------------------------
@@ -258,6 +260,9 @@ CREATE TABLE IF NOT EXISTS `users` (
258260 ` resetid` varchar (32 ) COLLATE utf8_unicode_ci DEFAULT NULL ,
259261 ` resetexpire` bigint (20 ) COLLATE utf8_unicode_ci DEFAULT NULL ,
260262 ` lastreset` bigint (20 ) COLLATE utf8_unicode_ci DEFAULT NULL ,
263+ ` login_expiry` bigint (20 ) COLLATE utf8_unicode_ci DEFAULT ' -1' ,
264+ ` last_login` bigint (20 ) COLLATE utf8_unicode_ci DEFAULT ' -1' ,
265+ ` login_timeout` smallint (5 ) COLLATE utf8_unicode_ci DEFAULT ' -1' ,
261266 PRIMARY KEY (` username` )
262267) ENGINE= InnoDB DEFAULT CHARSET= utf8 COLLATE= utf8_unicode_ci;
263268
0 commit comments