diff --git a/app/Console/Commands/PurgeLoginAttempts.php b/app/Console/Commands/PurgeLoginAttempts.php new file mode 100644 index 0000000000..b49f32430e --- /dev/null +++ b/app/Console/Commands/PurgeLoginAttempts.php @@ -0,0 +1,44 @@ +confirm("\n****************************************************\nTHIS WILL DELETE ALL OF THE YOUR LOGIN ATTEMPT RECORDS. There is NO undo. \n****************************************************\n\nDo you wish to continue? No backsies! [y|N]")) { + \DB::statement('delete from login_attempts'); + } + } +}