diff --git a/database/migrations/2016_02_19_074326_create_failed_jobs_table.php b/database/migrations/2016_02_19_074326_create_failed_jobs_table.php new file mode 100644 index 0000000..3d733b6 --- /dev/null +++ b/database/migrations/2016_02_19_074326_create_failed_jobs_table.php @@ -0,0 +1,33 @@ +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'); + } +}