fix(backups): large database backups are not working (#6217)

This commit is contained in:
🏔️ Peak
2025-07-18 15:47:14 +02:00
committed by GitHub
parent ed6e58f7ee
commit e5e1bdcd4d
4 changed files with 52 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
<?php
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
{
Schema::table('scheduled_database_backups', function (Blueprint $table) {
$table->integer('timeout')->default(3600);
});
}
};