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