File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/laravel/framework/src/Illuminate/Queue/Console/stubs
Upload
[..]
failed_jobs.stub (834 B)
Edit
Rename
Del
jobs.stub (825 B)
Edit
Rename
Del
Edit: failed_jobs.stub
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Schema::create('{{table}}', function (Blueprint $table) { $table->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}}'); } };
Simpan