Fixed comment; wfEncryptPassword() is deprecated
This commit is contained in:
parent
f916f9e25c
commit
a93336d222
1 changed files with 2 additions and 3 deletions
|
|
@ -63,9 +63,8 @@ CREATE TABLE /*_*/user (
|
|||
-- Optional 'real name' to be displayed in credit listings
|
||||
user_real_name varchar(255) binary NOT NULL default '',
|
||||
|
||||
-- Password hashes, normally hashed like so:
|
||||
-- MD5(CONCAT(user_id,'-',MD5(plaintext_password))), see
|
||||
-- wfEncryptPassword() in GlobalFunctions.php
|
||||
-- Password hashes, see User::crypt() and User::comparePasswords()
|
||||
-- in User.php for the algorithm
|
||||
user_password tinyblob NOT NULL,
|
||||
|
||||
-- When using 'mail me a new password', a random
|
||||
|
|
|
|||
Loading…
Reference in a new issue