mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00: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:
parent
cf3ec1ec95
commit
85b0675d3f
1 changed files with 13 additions and 0 deletions
|
@ -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'
|
||||||
|
|
Loading…
Add table
Reference in a new issue