chore: 更新 columns 字段长度

This commit is contained in:
JaguarJack 2023-04-19 06:13:39 +08:00
parent 64024ea0f6
commit 53047a58ca

View File

@ -14,7 +14,7 @@ return new class () extends Migration {
$table->string('name')->nullable(false)->comment('schema 名称'); $table->string('name')->nullable(false)->comment('schema 名称');
$table->string('columns')->nullable(false)->comment('字段'); $table->string('columns', 2000)->nullable(false)->comment('字段');
$table->boolean('is_soft_delete')->default(1)->comment('1 是 2 否'); $table->boolean('is_soft_delete')->default(1)->comment('1 是 2 否');