fix claim settle cronjob

This commit is contained in:
xiaomlove
2022-06-01 13:15:55 +08:00
parent 3fe4cb8b6d
commit 9541d94aff
2 changed files with 7 additions and 3 deletions

View File

@@ -7,6 +7,7 @@ use App\Models\Snatch;
use App\Models\Torrent;
use App\Models\User;
use Carbon\Carbon;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Support\Facades\DB;
use Nexus\Database\NexusDB;
@@ -106,7 +107,9 @@ class ClaimRepository extends BaseRepository
$startOfThisMonth = Carbon::now()->startOfMonth();
$query = Claim::query()
->select(['uid'])
->where('last_settle_at', '<', $startOfThisMonth)
->where(function (Builder $query) use ($startOfThisMonth) {
$query->where('last_settle_at', '<', $startOfThisMonth)->orWhereNull('last_settle_at');
})
->groupBy('uid')
;
$size = 10000;