[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
jurnal-kesmas
/
lib
/
pkp
/
classes
/
migration
/
install
/
[
Home
]
File: FailedJobsMigration.php
<?php /** * @file classes/migration/install/FailedJobsMigration.php * * Copyright (c) 2014-2021 Simon Fraser University * Copyright (c) 2000-2021 John Willinsky * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @class FailedJobsMigration * * @brief Describe database table structures. */ namespace PKP\migration\install; use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class FailedJobsMigration extends Migration { /** * Run the migrations. */ public function up() { // Schema matches https://github.com/illuminate/queue/blob/7.x/Console/stubs/failed_jobs.stub Schema::create('failed_jobs', function (Blueprint $table) { $table->comment('A log of all failed jobs.'); $table->bigIncrements('id'); $table->text('connection'); $table->text('queue'); $table->longText('payload'); $table->longText('exception'); $table->timestamp('failed_at')->useCurrent(); }); } /** * Reverse the migration. */ public function down() { Schema::dropIfExists('failed_jobs'); } }