id(); $table->string('uuid')->unique(); $table->string('connection'); $table->string('queue'); $table->longText('payload'); $table->longText('exception'); $table->timestamp('failed_at')->useCurrent(); $table->index(['connection', 'queue', 'failed_at']); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('{{table}}'); } };