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: 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}}'); } };
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