From 8762e158c49de9227c257eaddb2f52cf719d6174 Mon Sep 17 00:00:00 2001 From: snipe Date: Thu, 26 Jul 2018 18:08:25 -0700 Subject: [PATCH] Delete content from login attempts table --- app/Console/Commands/PaveIt.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Console/Commands/PaveIt.php b/app/Console/Commands/PaveIt.php index 35b6b03a9b..d30917a735 100644 --- a/app/Console/Commands/PaveIt.php +++ b/app/Console/Commands/PaveIt.php @@ -79,6 +79,7 @@ class PaveIt extends Command DB::statement('delete from accessories_users'); DB::statement('delete from asset_logs'); DB::statement('delete from asset_maintenances'); + DB::statement('delete from login_attempts'); DB::statement('delete from asset_uploads'); DB::statement('delete from action_logs'); DB::statement('delete from checkout_requests');