From 17db6c110f591226c6dd6a7517295f9bd07c30eb Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Sun, 21 Jun 2009 12:14:02 -0400
Subject: [PATCH] FS#770 - DNS A - BACK button returns you to domain list 

---
 install/sql/ispconfig3.sql |   14 ++++++++++++++
 1 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/install/sql/ispconfig3.sql b/install/sql/ispconfig3.sql
index 448c0a8..376ff66 100644
--- a/install/sql/ispconfig3.sql
+++ b/install/sql/ispconfig3.sql
@@ -1019,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`
 --
 

--
Gitblit v1.9.1