2 more files
authorJoe Hunt <joe.hunt.consulting@gmail.com>
Mon, 12 Oct 2009 23:29:29 +0000 (23:29 +0000)
committerJoe Hunt <joe.hunt.consulting@gmail.com>
Mon, 12 Oct 2009 23:29:29 +0000 (23:29 +0000)
CHANGELOG.txt
sql/en_US-demo.sql
sql/en_US-new.sql

index 8680635cbb2b9807cf4857e4dfe54c2bf6b5f0d8..c02386aa0d697f7fceb036009f9034e001002bec 100644 (file)
@@ -23,6 +23,8 @@ $ -> Affected files
 + Added discrete users online in footer (from Wish List Forum)
 $ /admin/db/users_db.inc
   /sql/alter2.2.sql
+  /sql/en_US-new.sql
+  /sql/en_US-demo.sql
   /themes/aqua/renderer.php
   /themes/cool/renderer.php
   /themes/default/renderer.php
index 661308797c615ff96277b49aab9864623232fe23..44fe5ef854332c51c89e6b9e8066c9593e322e38 100644 (file)
@@ -2097,3 +2097,15 @@ CREATE TABLE `0_tag_associations` (
 
 
 ### Data of table `0_tag_associations` ###
+
+DROP TABLE IF EXISTS `0_usersonline`;
+
+CREATE TABLE `0_useronline` (
+       `timestamp` int(15) NOT NULL default '0',
+       `ip` varchar(40) NOT NULL default '',
+       `file` varchar(100) NOT NULL default '',
+       PRIMARY KEY (`timestamp`),
+       KEY `ip` (`ip`),
+       KEY `file` (`file`) 
+) TYPE=MyISAM;
+
index 1e9342dfd93f8431be85edfadfa516a91a50a5e6..9b91f300a43249cb7912296f63ce6e6d3277b147 100644 (file)
@@ -1839,3 +1839,15 @@ CREATE TABLE `0_tag_associations` (
 
 
 ### Data of table `0_tag_associations` ###
+
+DROP TABLE IF EXISTS `0_usersonline`;
+
+CREATE TABLE `0_useronline` (
+       `timestamp` int(15) NOT NULL default '0',
+       `ip` varchar(40) NOT NULL default '',
+       `file` varchar(100) NOT NULL default '',
+       PRIMARY KEY (`timestamp`),
+       KEY `ip` (`ip`),
+       KEY `file` (`file`) 
+) TYPE=MyISAM;
+