- added table tblUserPasswordRequest

This commit is contained in:
steinm 2011-10-10 14:15:18 +00:00
parent 06a7ce8b7b
commit 462704e16f
2 changed files with 28 additions and 0 deletions

View File

@ -34,6 +34,20 @@ CREATE TABLE `tblUsers` (
-- --------------------------------------------------------
--
-- Table structure for table `tblUserPasswordRequest`
--
CREATE TABLE `tblUserPasswordRequest` (
`id` int(11) NOT NULL auto_increment,
`userID` int(11) NOT NULL default '0',
`hash` varchar(50) default NULL,
`date` datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `tblUserImages`
--

View File

@ -34,6 +34,20 @@ CREATE TABLE `tblUsers` (
-- --------------------------------------------------------
--
-- Table structure for table `tblUserPasswordRequest`
--
CREATE TABLE `tblUserPasswordRequest` (
`id` int(11) NOT NULL auto_increment,
`userID` int(11) NOT NULL default '0',
`hash` varchar(50) default NULL,
`date` datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `tblUserImages`
--