CREATE TABLE `amx_serverinfo`( `id` int(11) NULL auto_increment, `timestamp` int(11) NULL, `hostname` varchar(100) NULL DEFAULT 'Unknown', `address` varchar(100) NULL, `gametype` varchar(32) NULL, `rcon` varchar(32) NULL, `amxban_version` varchar(32) NULL, `amxban_motd` varchar(250) NULL, `motd_delay` int(10) NULL DEFAULT '10', `amxban_menu` int(10) NOT NULL DEFAULT '1', `reasons` int(10) NULL, `timezone_fixx` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (id) ); CREATE TALBE `amx_reasons`( `id int`(11) NULL auto_increment, `reason` varchar(100) NULL, `static_bantime` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (id) ); CREATE TALBE `amx_reasons_set`( `id` int(11) NULL auto_increment, `setname` varchar(32) NULL, PRIMARY KEY (id) );