Update default concurrent_builds value to 2

This commit is contained in:
Andras Bacsai 2024-01-24 11:48:00 +01:00
parent 6ecb9c21ce
commit 4120fba9a8

View File

@ -12,7 +12,7 @@ return new class extends Migration
public function up(): void public function up(): void
{ {
Schema::table('server_settings', function (Blueprint $table) { Schema::table('server_settings', function (Blueprint $table) {
$table->integer('concurrent_builds')->default(3); $table->integer('concurrent_builds')->default(2);
}); });
} }