odea/config/_sql/refexport.sql
2011-12-29 16:18:34 +00:00

7 lines
336 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 ;