Merge pull request #557 from jonnybarnes/555-remove-old-failed-jobs-table

Remove old failed_jobs table
This commit is contained in:
Jonny Barnes 2022-11-21 18:52:28 +00:00 committed by GitHub
commit 0ea6149c70
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.
}
};