diff --git a/database/migrations/2024_01_12_015755_add_uuid_to_failed_jobs_table.php b/database/migrations/2024_01_12_015755_add_uuid_to_failed_jobs_table.php new file mode 100644 index 000000000..160ff1793 --- /dev/null +++ b/database/migrations/2024_01_12_015755_add_uuid_to_failed_jobs_table.php @@ -0,0 +1,31 @@ +string('uuid') + ->after('id') + ->nullable() + ->unique(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('failed_jobs', function (Blueprint $table) { + $table->dropColumn('uuid'); + }); + } +};