1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-10-05 04:01:49 +02:00

Removed autologin_key + fixed bug #471878

git-svn-id: file:///svn/phpbb/trunk@1571 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2001-12-14 16:32:33 +00:00
parent 35dc396395
commit a552d5b7d5
6 changed files with 8 additions and 11 deletions

View File

@@ -40,9 +40,8 @@ CREATE TABLE phpbb_auth_access (
auth_attachments int2 DEFAULT '0' NOT NULL,
auth_vote int2 DEFAULT '0' NOT NULL,
auth_mod int2 DEFAULT '0' NOT NULL,
CONSTRAINT phpbb_auth_access_pkey PRIMARY KEY (group_id)
CONSTRAINT phpbb_auth_access_pkey PRIMARY KEY (group_id, forum_id)
);
CREATE INDEX group_id_phpbb_auth_access_index ON phpbb_auth_access (forum_id);
/* --------------------------------------------------------
@@ -446,7 +445,6 @@ CREATE TABLE phpbb_users (
username varchar(25) DEFAULT '' NOT NULL,
user_regdate int4 DEFAULT '0' NOT NULL,
user_password varchar(32) DEFAULT '' NOT NULL,
user_autologin_key varchar(32),
user_session_time int4 DEFAULT '0' NOT NULL,
user_session_page int2 DEFAULT '0' NOT NULL,
user_lastvisit int4 DEFAULT '0' NOT NULL,