/* This log table has two advantages over the old one: 1) Storing a redirect is not necessary to have a line in the log. This allows us to log ignored requests without creating a redirect for them. This is useful when requests are ignored based on the user agent. 2) An additional "reason" field allows us to record why a redirect was made. This is necessary when ignoring requests based on the user agent so that the user can see why a URL may be redirected in one case and ignored in another. */ CREATE TABLE IF NOT EXISTS {wp_abj404_logsv2} ( `id` bigint(40) NOT NULL auto_increment, `timestamp` bigint(40) NOT NULL, `user_ip` varchar(512) NOT NULL, `referrer` varchar(512) NOT NULL, `requested_url` varchar(512) NOT NULL, `dest_url` varchar(512) NOT NULL, PRIMARY KEY (`id`), KEY `timestamp` (`timestamp`) ) ENGINE=MyISAM {charset_collate} COMMENT='404 Solution Plugin Logs Table' AUTO_INCREMENT=1