fix: 修改v2_setting的value为text类型,防止过长的配置抱错

This commit is contained in:
xboard 2023-11-19 20:51:52 +08:00
parent aab33be34a
commit 2dd0dfac87

View File

@ -0,0 +1,28 @@
<?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('v2_settings', function (Blueprint $table) {
$table->text('value')->comment('设置值')->nullable()->change();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('v2_settings', function (Blueprint $table) {
$table->string('value')->comment('设置值')->nullable()->change();
});
}
};