Access control system description.
[fa-stable.git] / sql / en_US-demo.sql
index 661308797c615ff96277b49aab9864623232fe23..e53f281e0cc234873e18585a8515a6b9e699b871 100644 (file)
@@ -2097,3 +2097,15 @@ CREATE TABLE `0_tag_associations` (
 
 
 ### Data of table `0_tag_associations` ###
+
+DROP TABLE IF EXISTS `0_useronline` ;
+
+CREATE TABLE `0_useronline` (
+       `id` int(11) NOT NULL AUTO_INCREMENT ,
+       `timestamp` int(15) NOT NULL default '0',
+       `ip` varchar(40) NOT NULL default '',
+       `file` varchar(100) NOT NULL default '',
+       PRIMARY KEY `id` (`id`) ,
+       KEY (`timestamp`) 
+) TYPE=MYISAM AUTO_INCREMENT=1;
+