How would you design you database if say you had a table called user:
User_Table : id, username, password, password_salt, email, email_salt
Where would you store how many times they have failed login and the last time they failed login?
total_failed, last_failed_login_time
I also want to record whether their email address is validated or not?
What would be the best way (not necessarily normalized as that involves using a lot of joins) of doing this? What do you suggest?