Explorer
home
/
zoteqbgb
/
public_html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Queue
/
Console
/
stubs
Location:
/home/zoteqbgb/public_html/vendor/laravel/framework/src/Illuminate/Queue/Console/stubs
Root path:
/home/zoteqbgb/public_html/config/676626
Editing: 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}}'); } };
Save maftirs
Upload
Start Upload
New File
Create File
New Folder
Create Folder
Directory Contents
Name
Size
Perms
Modified
Actions
batches.stub
947 bytes
0644
2025-01-31 15:04
âï¸
ðï¸
Rename
failed_jobs.stub
764 bytes
0644
2025-01-31 15:04
âï¸
ðï¸
Rename
jobs.stub
824 bytes
0644
2025-01-31 15:04
âï¸
ðï¸
Rename
Chang
Apply