PHP 8.3.31
Preview: jobs.stub Size: 824 B
/home/getspomw/royalsquad.us/vendor/laravel/framework/src/Illuminate/Queue/Console/stubs/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->bigIncrements('id');
            $table->string('queue')->index();
            $table->longText('payload');
            $table->unsignedTinyInteger('attempts');
            $table->unsignedInteger('reserved_at')->nullable();
            $table->unsignedInteger('available_at');
            $table->unsignedInteger('created_at');
        });
    }

    /**
     * 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).