Merge pull request #114 from Poniverse/fix_failed_jobs_table

Fixed tracking of failed asynchronous jobs.
This commit is contained in:
Joe Citrine 2016-12-10 14:06:19 +00:00 committed by GitHub
commit 263ad978db
2 changed files with 50 additions and 1 deletions

View file

@ -56,7 +56,7 @@ return [
*/
'failed' => [
'database' => 'mysql', 'table' => 'failed_jobs',
'database' => 'pgsql', 'table' => 'failed_jobs',
],
];

View file

@ -0,0 +1,49 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateFailedJobsTable3 extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
DB::transaction(function(){
Schema::dropIfExists('failed_jobs');
Schema::create('failed_jobs', function (Blueprint $table) {
$table->increments('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()
{
DB::transaction(function () {
Schema::dropIfExists('failed_jobs');
Schema::create('failed_jobs', function (Blueprint $table) {
$table->increments('id');
$table->text('connection', 65535);
$table->text('queue', 65535);
$table->text('payload');
$table->dateTime('failed_at')->default('now()');
});
});
}
}