1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
CREATE TABLE `places` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`country` varchar(5) NOT NULL,
`place` varchar(250) NOT NULL,
`gps` varchar(250) DEFAULT NULL,
`localisor` int(10) NOT NULL DEFAULT '0',
`type` varchar(250) DEFAULT NULL,
`vu` int(10) NOT NULL DEFAULT '0',
`date_add` datetime NOT NULL,
`i_custom` text,
`i_wiki` text,
`i_routard` text,
`i_fute` text,
`population` int(10) DEFAULT NULL,
`surface` int(10) DEFAULT NULL,
`acces` varchar(250) DEFAULT NULL,
`acces1` text,
`duree` varchar(250) DEFAULT NULL,
`longueur` varchar(250) DEFAULT NULL,
`niveau` varchar(250) DEFAULT NULL,
`circuit` longtext,
`contributor` int(10) DEFAULT NULL,
`assoc` int(10) NOT NULL DEFAULT '0',
`status` int(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `country` (`country`,`assoc`,`status`)
) ENGINE=MyISAM AUTO_INCREMENT=670770 DEFAULT CHARSET=utf8 |