odea/config/_sql/refexport.sql

7 lines
336 B
MySQL
Raw Normal View History

2011-12-14 09:18:59 +01:00
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 ;