Modification sur la structure sql

This commit is contained in:
Michael RICOIS 2012-02-16 15:05:11 +00:00
parent acf4490c22
commit fcd0df8095

View File

@ -4,9 +4,11 @@ CREATE TABLE IF NOT EXISTS `commandes` (
`idProfil` int(11) NOT NULL,
`nbLigne` int(11) NOT NULL,
`nbLigneT` int(11) NOT NULL,
`error` int(11) NOT NULL,
`uniteInsee` int(11) NOT NULL DEFAULT '0',
`error` varchar(100) NOT NULL,
`dateAdded` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`dateStart` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`dateStop` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`fichierOut` varchar(100) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
) DEFAULT CHARSET=utf8;