From 53047a58caa9165656b0e785dd42ddf679ec3738 Mon Sep 17 00:00:00 2001 From: JaguarJack Date: Wed, 19 Apr 2023 06:13:39 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=9B=B4=E6=96=B0=20columns=20?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=E9=95=BF=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/Develop/database/migrations/Schemas.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Develop/database/migrations/Schemas.php b/modules/Develop/database/migrations/Schemas.php index 3044d41..1897915 100644 --- a/modules/Develop/database/migrations/Schemas.php +++ b/modules/Develop/database/migrations/Schemas.php @@ -14,7 +14,7 @@ return new class () extends Migration { $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 否');