Access control system description.
[fa-stable.git] / sql / en_US-demo.sql
index 44fe5ef854332c51c89e6b9e8066c9593e322e38..e53f281e0cc234873e18585a8515a6b9e699b871 100644 (file)
@@ -2098,14 +2098,14 @@ CREATE TABLE `0_tag_associations` (
 
 ### Data of table `0_tag_associations` ###
 
-DROP TABLE IF EXISTS `0_usersonline`;
+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 (`timestamp`),
-       KEY `ip` (`ip`),
-       KEY `file` (`file`) 
-) TYPE=MyISAM;
+       PRIMARY KEY `id` (`id`) ,
+       KEY (`timestamp`) 
+) TYPE=MYISAM AUTO_INCREMENT=1;