joshuaadickerson / Elkarte2

Elkarte Version 2
Other
0 stars 0 forks source link

Create password hash / auth table #17

Open joshuaadickerson opened 8 years ago

joshuaadickerson commented 8 years ago

The password table will contain the member id, the hashed password, and when that password was created. That's it. Only 3 queries will touch that table - getPassword(), createPassword(), and removePassword() which would be SELECT, REPLACE, and DELETE queries respectively. The results will never be cached and they don't need to be since they are only read on login.