From 85b0675d3f9a5dd376d9f95a0745fd22cea1c69a Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Fri, 17 Jan 2003 13:01:59 +0000 Subject: [PATCH] Add confirm table git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@3331 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install/schemas/mysql_schema.sql | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql index b8771c30e1..2160d3be03 100644 --- a/phpBB/install/schemas/mysql_schema.sql +++ b/phpBB/install/schemas/mysql_schema.sql @@ -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'