mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-22 10:38:14 -05:00
fix: 修改v2_setting的value为text类型,防止过长的配置抱错
This commit is contained in:
parent
aab33be34a
commit
2dd0dfac87
@ -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();
|
||||
});
|
||||
}
|
||||
};
|
Loading…
Reference in New Issue
Block a user