From c622c6de3ef9e7daf255763a483dddf28a20e019 Mon Sep 17 00:00:00 2001 From: Shift Date: Sat, 7 Jan 2023 20:33:16 +0000 Subject: [PATCH] Add `uuid` to `failed_jobs` table --- ...7_000000_add_uuid_to_failed_jobs_table.php | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 database/migrations/2023_01_07_000000_add_uuid_to_failed_jobs_table.php diff --git a/database/migrations/2023_01_07_000000_add_uuid_to_failed_jobs_table.php b/database/migrations/2023_01_07_000000_add_uuid_to_failed_jobs_table.php new file mode 100644 index 000000000..6f7874653 --- /dev/null +++ b/database/migrations/2023_01_07_000000_add_uuid_to_failed_jobs_table.php @@ -0,0 +1,40 @@ +string('uuid')->after('id')->nullable()->unique(); + }); + + DB::table('failed_jobs')->whereNull('uuid')->cursor()->each(function ($job) { + DB::table('failed_jobs') + ->where('id', $job->id) + ->update(['uuid' => (string)Str::uuid()]); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('failed_jobs', function (Blueprint $table) { + $table->dropColumn('uuid'); + }); + } +}