1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +02:00

Removed confirm code time, updated ms access schema

git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@4110 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2003-06-10 12:43:16 +00:00
parent 846fa80df1
commit d2b59cf3e7
5 changed files with 10 additions and 25 deletions

View File

@@ -50,10 +50,8 @@ CREATE TABLE phpbb_confirm (
confirm_id char(32) DEFAULT '' NOT NULL,
session_id char(32) DEFAULT '' NOT NULL,
code char(6) DEFAULT '' NOT NULL,
time int2 DEFAULT '0' NOT NULL,
CONSTRAINT phpbb_confirm_pkey PRIMARY KEY (session_id, confirm_id)
);
CREATE INDEX time_phpbb_confirm_index ON phpbb_confirm (time);
/* --------------------------------------------------------