diff --git a/install/create_tables-innodb.sql b/install/create_tables-innodb.sql index 980e75237..0e372a892 100644 --- a/install/create_tables-innodb.sql +++ b/install/create_tables-innodb.sql @@ -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` -- diff --git a/install/create_tables.sql b/install/create_tables.sql index 525505bf0..995aaa31b 100644 --- a/install/create_tables.sql +++ b/install/create_tables.sql @@ -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` --