webservice/config/_sql/logsCount.sql

14 lines
349 B
MySQL
Raw Normal View History

2012-05-23 12:41:00 +00:00
--
-- Structure de la table `logsCount`
--
CREATE TABLE IF NOT EXISTS `logsCount` (
`jour` date NOT NULL,
`idClient` int(11) NOT NULL,
`service` char(20) NOT NULL,
`login` char(20) NOT NULL,
`log` char(20) NOT NULL,
`conso` int(11) NOT NULL,
`batchUpdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=MyISAM;