Skip to content
Snippets Groups Projects
Commit 1656df59 authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

Delete 2016_06_14_132551_create_failed_jobs_table.php

parent f4caca44
No related branches found
No related tags found
1 merge request!1365Resolve "Filter Options for MetaGer"
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateFailedJobsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('failed_jobs', function (Blueprint $table) {
$table->increments('id');
$table->text('connection');
$table->text('queue');
$table->longText('payload');
$table->timestamp('failed_at')->useCurrent();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('failed_jobs');
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment