Page MenuHomePhorge

2019_09_24_082203_create_failed_jobs_table.php
No OneTemporary

Size
805 B
Referenced Files
None
Subscribers
None

2019_09_24_082203_create_failed_jobs_table.php

<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
// phpcs:ignore
class CreateFailedJobsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('failed_jobs', function (Blueprint $table) {
$table->bigIncrements('id');
$table->text('connection');
$table->text('queue');
$table->longText('payload');
$table->longText('exception');
$table->timestamp('failed_at')->useCurrent();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('failed_jobs');
}
}

File Metadata

Mime Type
text/x-php
Expires
Thu, Nov 20, 5:18 PM (14 h, 49 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
387234
Default Alt Text
2019_09_24_082203_create_failed_jobs_table.php (805 B)

Event Timeline