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'