* Track failed login attempts of a user * Reset failed attempts as soon as the login succeeded Fixes #182
2 lines
102 B
SQL
2 lines
102 B
SQL
ALTER TABLE `accounts` ADD `failed_logins` INT( 5 ) UNSIGNED NULL DEFAULT '0' AFTER `is_locked` ;
|