1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-10 18:54:08 +02:00

Add confirmation stuff here ... save time elsehwere ... MSAccess note yet updated

git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@4104 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2003-06-10 00:32:03 +00:00
parent 6636b1817d
commit ed318a39d6
6 changed files with 95 additions and 10 deletions

View File

@@ -93,14 +93,15 @@ CREATE TABLE phpbb_config (
# --------------------------------------------------------
#
# Table structure for table `phpbb_confirm`
# 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 '',
confirm_id char(32) DEFAULT '' NOT NULL,
session_id char(32) DEFAULT '' NOT NULL,
code char(6) DEFAULT '' NOT NULL,
time int(11) DEFAULT '0' NOT NULL,
PRIMARY KEY (session_id,confirm_id),
KEY session_id (session_id)
KEY time (time)
);