Fixed extension module update and deletion.
[fa-stable.git] / sql / en_US-new.sql
index 1e9342dfd93f8431be85edfadfa516a91a50a5e6..90a2a329b71934a66b845c9835d7ab6ce783e0f0 100644 (file)
@@ -1839,3 +1839,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;
+