Merge pull request #557 from jonnybarnes/555-remove-old-failed-jobs-table
Remove old failed_jobs table
This commit is contained in:
commit
0ea6149c70
1 changed files with 27 additions and 0 deletions
|
@ -0,0 +1,27 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::dropIfExists('failed_jobs');
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
// This migration is not reversible.
|
||||
}
|
||||
};
|
Loading…
Add table
Reference in a new issue