Skip to content

Instantly share code, notes, and snippets.

@arghav
Created May 11, 2011 08:01
Show Gist options
  • Save arghav/966082 to your computer and use it in GitHub Desktop.
Save arghav/966082 to your computer and use it in GitHub Desktop.
SQL dump of my session table
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