mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-03 15:27:42 +02:00
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:
@@ -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'
|
||||||
|
Reference in New Issue
Block a user