PHP 8.3.31
Preview: failed_jobs.stub Size: 764 B
/home/getspomw/royalsquad.us/vendor/laravel/framework/src/Illuminate/Queue/Console/stubs/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->text('connection');
            $table->text('queue');
            $table->longText('payload');
            $table->longText('exception');
            $table->timestamp('failed_at')->useCurrent();
        });
    }

    /**
     * Reverse the migrations.
     */
    public function down(): void
    {
        Schema::dropIfExists('{{table}}');
    }
};

Directory Contents

Dirs: 0 × Files: 3

Name Size Perms Modified Actions
947 B lrw-rw-rw- 2025-09-17 06:52:57
Edit Download
764 B lrw-rw-rw- 2025-09-17 06:52:57
Edit Download
824 B lrw-rw-rw- 2025-09-17 06:52:57
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).