Index: trunk/phase3/maintenance/tables.sql |
— | — | @@ -63,9 +63,8 @@ |
64 | 64 | -- Optional 'real name' to be displayed in credit listings |
65 | 65 | user_real_name varchar(255) binary NOT NULL default '', |
66 | 66 | |
67 | | - -- Password hashes, normally hashed like so: |
68 | | - -- MD5(CONCAT(user_id,'-',MD5(plaintext_password))), see |
69 | | - -- wfEncryptPassword() in GlobalFunctions.php |
| 67 | + -- Password hashes, see User::crypt() and User::comparePasswords() |
| 68 | + -- in User.php for the algorithm |
70 | 69 | user_password tinyblob NOT NULL, |
71 | 70 | |
72 | 71 | -- When using 'mail me a new password', a random |