tbrehm
2009-06-21 17db6c110f591226c6dd6a7517295f9bd07c30eb
install/sql/ispconfig3.sql
@@ -1010,6 +1010,7 @@
  `database_password` varchar(64) default NULL,
  `database_charset` varchar(64) default NULL,
  `remote_access` enum('n','y') NOT NULL default 'y',
  `remote_ips` text NOT NULL,
  `active` enum('n','y') NOT NULL default 'y',
  PRIMARY KEY  (`database_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1;
@@ -1018,6 +1019,20 @@
-- --------------------------------------------------------
--
-- Table structure for table  `web_traffic`
--
CREATE TABLE `web_traffic` (
  `hostname` varchar(255) NOT NULL,
  `traffic_date` date NOT NULL,
  `traffic_bytes` bigint(32) unsigned NOT NULL default '0',
  PRIMARY KEY  (`hostname`,`traffic_date`)
) ENGINE=MyISAM;
-- --------------------------------------------------------
--
-- Table structure for table  `attempts_login`
--