Add confirm table

git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@3331 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2003-01-17 13:01:59 +00:00
parent cf3ec1ec95
commit 85b0675d3f

View file

@ -91,6 +91,19 @@ CREATE TABLE phpbb_config (
); );
# --------------------------------------------------------
#
# Table structure for table `phpbb_confirm`
#
CREATE TABLE phpbb_confirm (
confirm_id char(32) NOT NULL default '',
session_id char(32) NOT NULL default '',
code char(6) NOT NULL default '',
PRIMARY KEY (session_id,confirm_id),
KEY session_id (session_id)
)
# -------------------------------------------------------- # --------------------------------------------------------
# #
# Table structure for table 'phpbb_disallow' # Table structure for table 'phpbb_disallow'