enrichissement/config/_sql/commandes.sql
2012-01-13 16:01:35 +00:00

13 lines
490 B
SQL

CREATE TABLE IF NOT EXISTS `commandes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`fichier` varchar(100) NOT NULL,
`idProfil` int(11) NOT NULL,
`nbLigne` int(11) NOT NULL,
`nbLigneT` int(11) NOT NULL,
`error` int(11) 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',
PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;