From: Jon Langseth Date: Thu, 19 Jan 2012 20:17:31 +0000 (+0100) Subject: Forgot to add structure changes X-Git-Url: https://git.defcon.no/?p=hermes;a=commitdiff_plain;h=7fd48bae862f9eb34c3100995a58c01f3ab9deb4 Forgot to add structure changes --- diff --git a/doc/sql-data/structure.sql b/doc/sql-data/structure.sql index eaf4260..e2ee817 100644 --- a/doc/sql-data/structure.sql +++ b/doc/sql-data/structure.sql @@ -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`