Test run schedule task - NewUserRegistrationExpireCheckV2CommandJob

This commit is contained in:
Dillon Ngo
2024-03-24 19:01:06 +08:00
parent 454b1ff1a9
commit 102e0a6fa6
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -33,6 +33,6 @@ class UserEmailVerification extends AbstractModel
*/
public function scopeTwoDaysOld($query)
{
return $query->where('created_at', '>=', Carbon::now()->subHours(48));
return $query->where('created_at', '<=', Carbon::now()->subHours(48));
}
}