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
|
CREATE TABLE `fonction` (
`NumFonction` int(10) unsigned NOT NULL auto_increment,
`LibFonction` varchar(255) NOT NULL,
PRIMARY KEY (`NumFonction`),
UNIQUE KEY `LibFonction` (`LibFonction`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=latin1 AUTO_INCREMENT=10 ;
CREATE TABLE `testeur` (
`NumTesteur` int(10) unsigned NOT NULL auto_increment,
`CiviliteTesteur` enum('Mr','Mme','Mlle') NOT NULL,
`NomTesteur` varchar(255) NOT NULL,
`PrenomTesteur` varchar(255) default NULL,
`FonctionTesteur` int(10) unsigned NOT NULL,
`MetierTesteur` int(10) unsigned NOT NULL,
`SocieteTesteur` int(10) unsigned NOT NULL,
`NumTelTesteur` char(14) NOT NULL,
`NumMobileTesteur` char(14) default NULL,
`EmailTesteur` varchar(255) default NULL,
`CommentaireTesteur` text,
`NbParticipations` int(10) unsigned NOT NULL default '0',
`NbSollicitations` int(10) unsigned NOT NULL default '0',
`enCampagne` tinyint(1) NOT NULL default '0',
`surListeNoire` tinyint(1) NOT NULL default '0',
PRIMARY KEY (`NumTesteur`)
) ENGINE=InnoDB AUTO_INCREMENT=1074 DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; |
Partager