]> git.defcon.no Git - hermes/commitdiff
Forgot to add structure changes
authorJon Langseth <jon.langseth@lilug.no>
Thu, 19 Jan 2012 20:17:31 +0000 (21:17 +0100)
committerJon Langseth <jon.langseth@lilug.no>
Thu, 19 Jan 2012 20:17:31 +0000 (21:17 +0100)
doc/sql-data/structure.sql

index eaf4260fb6a58b48420074b2a059eafbdc64b3c0..e2ee817d5c5bf0a36bc731de284f1dbc69b4dcbe 100644 (file)
@@ -1074,7 +1074,23 @@ CREATE TABLE `servers` (
 ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
 SET character_set_client = @saved_cs_client;
 
+--
+-- Table structure for table `sessionkeys`
+--
 
+DROP TABLE IF EXISTS `sessionkeys`;
+SET @saved_cs_client     = @@character_set_client;
+SET character_set_client = utf8;
+CREATE TABLE `sessionkeys` (
+  `sessid` varchar(255) NOT NULL,
+  `session` varchar(128) NOT NULL,
+  `authid` varchar(128) NOT NULL,
+  `client` varchar(255) NOT NULL,
+  `key` varchar(128) NOT NULL,
+  `last` datetime default NULL,
+  PRIMARY KEY  (`session`,`authid`)
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+SET character_set_client = @saved_cs_client;
 
 --
 -- Table structure for table `users`