Skip to content

Instantly share code, notes, and snippets.

@1stevengrant
Created July 19, 2014 10:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 1stevengrant/86fee6146f683c05702e to your computer and use it in GitHub Desktop.
Save 1stevengrant/86fee6146f683c05702e to your computer and use it in GitHub Desktop.
CREATE TABLE `exp_security_hashes` (
`hash_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`date` int(10) unsigned NOT NULL,
`session_id` varchar(40) NOT NULL DEFAULT '0',
`hash` varchar(40) NOT NULL,
`used` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`hash_id`),
KEY `hash` (`hash`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment