Created
May 11, 2011 08:01
-
-
Save arghav/966082 to your computer and use it in GitHub Desktop.
SQL dump of my session table
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
CREATE TABLE `session` ( | |
`sess_id` varchar(255) NOT NULL, | |
`sess_data` text NOT NULL, | |
`sess_time` int(11) NOT NULL, | |
PRIMARY KEY (`sess_id`), | |
UNIQUE KEY `sess_id_idx` (`sess_id`) | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment