OwlCyberSecurity - MANAGER
Edit File: 2024_10_28_135659_create_job_batches_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateJobBatchesTable extends Migration { public function up() { Schema::create('job_batches', function (Blueprint $table) { $table->uuid('id')->primary(); $table->text('name')->nullable(); $table->text('total_jobs'); $table->text('pending_jobs'); $table->text('failed_jobs'); $table->text('failed_job_ids'); $table->text('options')->nullable(); $table->string('created_at')->nullable(); $table->string('cancelled_at')->nullable(); $table->string('finished_at')->nullable(); }); } public function down() { Schema::dropIfExists('job_batches'); } }