From a93336d222c61d24ceb21b45f7aff95d4be1327c Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Sat, 9 Oct 2010 13:34:19 +0000 Subject: [PATCH] Fixed comment; wfEncryptPassword() is deprecated --- maintenance/tables.sql | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/maintenance/tables.sql b/maintenance/tables.sql index 2661b84bab..7f57d5aae5 100644 --- a/maintenance/tables.sql +++ b/maintenance/tables.sql @@ -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 -- 2.20.1