Shift cleanup

This commit is contained in:
Shift
2023-01-07 20:33:31 +00:00
parent 080366d6d4
commit 6066e82e9c
5 changed files with 19 additions and 22 deletions

View File

@@ -22,7 +22,7 @@ class AddUuidToFailedJobsTable extends Migration
DB::table('failed_jobs')->whereNull('uuid')->cursor()->each(function ($job) {
DB::table('failed_jobs')
->where('id', $job->id)
->update(['uuid' => (string)Str::uuid()]);
->update(['uuid' => (string) Str::uuid()]);
});
}