Created
January 27, 2014 06:41
-
-
Save raramuridesign/8644087 to your computer and use it in GitHub Desktop.
joomla-mysql-jos_sessions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Use this to replace the session table if its locked | |
-- Table structure for table `jos_session` | |
-- | |
CREATE TABLE IF NOT EXISTS `jos_session` ( | |
`username` varchar(150) DEFAULT '', | |
`time` varchar(14) DEFAULT '', | |
`session_id` varchar(200) NOT NULL DEFAULT '0', | |
`guest` tinyint(4) DEFAULT '1', | |
`userid` int(11) DEFAULT '0', | |
`usertype` varchar(50) DEFAULT '', | |
`gid` tinyint(3) unsigned NOT NULL DEFAULT '0', | |
`client_id` tinyint(3) unsigned NOT NULL DEFAULT '0', | |
`data` longtext, | |
PRIMARY KEY (`session_id`(64)), | |
KEY `whosonline` (`guest`,`usertype`), | |
KEY `userid` (`userid`), | |
KEY `time` (`time`) | |
) ENGINE=MyISAM DEFAULT CHARSET=utf8; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment