mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-05 07:07:51 +02:00
Update user table for email hashing? Suggested and implemented by lanzer ... we may as well give it a go too
git-svn-id: file:///svn/phpbb/trunk@4792 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
13f80fe2ef
commit
f8b89a8f94
@ -786,6 +786,7 @@ CREATE TABLE phpbb_users (
|
||||
user_password varchar(32) DEFAULT '' NOT NULL,
|
||||
user_passchg int(11) DEFAULT '0' NOT NULL,
|
||||
user_email varchar(60) DEFAULT '' NOT NULL,
|
||||
user_email_hash bigint(20) DEFAULT '0' NOT NULL,
|
||||
user_birthday varchar(10) DEFAULT '' NOT NULL,
|
||||
user_lastvisit int(11) DEFAULT '0' NOT NULL,
|
||||
user_lastpost_time int(11) DEFAULT '0' NOT NULL,
|
||||
@ -837,6 +838,7 @@ CREATE TABLE phpbb_users (
|
||||
user_newpasswd varchar(32) DEFAULT '' NOT NULL,
|
||||
PRIMARY KEY (user_id),
|
||||
KEY user_birthday (user_birthday(6)),
|
||||
KEY user_email_hash (user_email_hash),
|
||||
KEY username (username)
|
||||
);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user