comment('A log of all failed jobs.'); $table->bigIncrements('id'); $table->text('connection'); $table->text('queue'); $table->longText('payload'); $table->longText('exception'); $table->timestamp('failed_at')->useCurrent(); }); } /** * Reverse the migration. */ public function down() { Schema::dropIfExists('failed_jobs'); } }