From 462704e16fca8177dad6e5915ac8476f9cc5911f Mon Sep 17 00:00:00 2001 From: steinm Date: Mon, 10 Oct 2011 14:15:18 +0000 Subject: [PATCH] - added table tblUserPasswordRequest --- install/create_tables-innodb.sql | 14 ++++++++++++++ install/create_tables.sql | 14 ++++++++++++++ 2 files changed, 28 insertions(+) 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` --