Browse Source

update: check user

tokumeikoi 2 years ago
parent
commit
2073727a0a
1 changed files with 3 additions and 1 deletions
  1. 3 1
      app/Console/Commands/CheckUser.php

+ 3 - 1
app/Console/Commands/CheckUser.php

@@ -43,7 +43,9 @@ class CheckUser extends Command
 
 
     private function resetExpiredUserPlan($day = 14)
     private function resetExpiredUserPlan($day = 14)
     {
     {
-        User::where('expired_at', '<', $day * 86400)->update([
+        User::where('expired_at', '<', $day * 86400)
+            ->whereNotNull('expired_at')
+            ->update([
             'plan_id' => NULL,
             'plan_id' => NULL,
             'group_id' => NULL
             'group_id' => NULL
         ]);
         ]);