chore: set default value for max_texture_width option

This commit is contained in:
Steven Qiu 2025-06-29 06:57:38 +08:00
parent f796a8d098
commit c8ebe991df
No known key found for this signature in database
GPG Key ID: 8ACE9DCFC76F38B9

View File

@ -0,0 +1,21 @@
<?php
use App\Services\Facades\Option;
use Illuminate\Database\Migrations\Migration;
return new class extends Migration {
/**
* Run the migrations.
*/
public function up(): void
{
Option::set('max_texture_width', 8192);
}
/**
* Reverse the migrations.
*/
public function down(): void
{
}
};