source: trunk/schemas/mysql.sql @ 1376

Revision 1376, 391 bytes checked in by anarcat, 8 years ago (diff)

retirer la base de rapports pendant que les rapports custom ne fonctionnent pas

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
RevLine 
[1350]1CREATE TABLE `stat_http` (
2  `uid` int(10) unsigned NOT NULL default '0',
3  `day` date NOT NULL default '0000-00-00',
4  `domain` varchar(255) NOT NULL default '',
5  `hit` int(10) unsigned NOT NULL default '0',
6  `size` int(10) unsigned NOT NULL default '0',
7  PRIMARY KEY  (`day`,`domain`),
[1362]8  KEY `uid` (`uid`),
9  KEY `day` (`day`)
[1350]10) TYPE=MyISAM COMMENT='Hits and bandwith used by domains';
Note: See TracBrowser for help on using the repository browser.