1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
DROP TABLE IF EXISTS `sondage`;
CREATE TABLE IF NOT EXIST `sondage` (
`id` smallint(6) NOT NULL auto_increment,
`idlang` char(50) NOT NULL,
`question` text NOT NULL,
`proposition1` varchar(100) NOT NULL,
`proposition2` varchar(100) NOT NULL,
`proposition3` varchar(100) NOT NULL,
`proposition4` varchar(100) NOT NULL,
`proposition5` varchar(100) NOT NULL,
`resultats1` smallint(6) NOT NULL,
`resultats2` smallint(6) NOT NULL,
`resultats3` smallint(6) NOT NULL,
`resultats4` smallint(6) NOT NULL,
`resultats5` smallint(6) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=17 ; |
Partager