mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-08 00:02:15 +01:00
Fixed failed jobs table
This commit is contained in:
committed by
Constantin Graf
parent
4c2748ff50
commit
7fd5d25781
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
DB::table('failed_jobs')->truncate();
|
||||
Schema::table('failed_jobs', function (Blueprint $table): void {
|
||||
$table->dropColumn('id');
|
||||
});
|
||||
Schema::table('failed_jobs', function (Blueprint $table): void {
|
||||
$table->id();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
DB::table('failed_jobs')->truncate();
|
||||
Schema::table('failed_jobs', function (Blueprint $table): void {
|
||||
$table->dropColumn('id');
|
||||
});
|
||||
Schema::table('failed_jobs', function (Blueprint $table): void {
|
||||
$table->uuid('id')->primary();
|
||||
});
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user