--
-- Table structure for table `Robots`
--
CREATE TABLE Robots (
`ws` varchar(30) not null comment 'Visited website name',
`dat` datetime not null comment 'Date and hour of the visit',
`ip` varchar(15) not null comment 'IP of the visitor',
`ua` varchar(255) not null comment 'User-agent of the visitor',
PRIMARY KEY(`dat`)
) engine=MyISAM comment='Robot visits table';
--
-- You can choose another name for the table but in this case you
-- will have to change its name into the Robots Class (index.php)
--
|