This file contains 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 IF NOT EXISTS `resetpasswordtokens` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`userID` int(11) NOT NULL, | |
`token` char(32) NOT NULL, | |
`status` set('used','new') NOT NULL DEFAULT 'new', | |
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, | |
PRIMARY KEY (`id`), | |
KEY `userID` (`userID`) | |
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; |
NewerOlder