odea/config/_sql/refexport.sql
2011-12-14 08:18:59 +00:00

8 lines
337 B
SQL

CREATE TABLE IF NOT EXISTS `refexport` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`idComptage` int(11) NOT NULL,
`fichier` varchar(100) NOT NULL,
`dateExport` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`)
) DEFAULT CHARSET=utf8 COMMENT='Sauvegarde des noms de fichier pour chaque export' AUTO_INCREMENT=1 ;