From 55bd02e60ef3252b653179cf695224bc5fa4a0b4 Mon Sep 17 00:00:00 2001 From: wanghongjun <1445693971@qq.com> Date: Fri, 5 Jun 2026 18:31:47 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E6=95=B0=E6=8D=AE-=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E4=BA=8B=E5=8A=A12?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../2026_02_10_175744_create_admin_translation_table.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/database/migrations/2026_02_10_175744_create_admin_translation_table.php b/database/migrations/2026_02_10_175744_create_admin_translation_table.php index bafd699..fb12c8d 100644 --- a/database/migrations/2026_02_10_175744_create_admin_translation_table.php +++ b/database/migrations/2026_02_10_175744_create_admin_translation_table.php @@ -13,9 +13,9 @@ return new class extends Migration { Schema::create('admin_translation', function (Blueprint $table) { $table->id(); - $table->string('en')->comment('英文'); - $table->string('zh_cn')->comment('中文简体'); - $table->string('zh_tw')->comment('中文繁体'); + $table->string('en', 500)->comment('英文'); + $table->string('zh_cn', 500)->comment('中文简体'); + $table->string('zh_tw', 500)->comment('中文繁体'); $table->bigInteger('type_id')->default(0)->comment('关联类型id'); $table->tinyInteger('type')->default(0)->comment('关联类型'); $table->softDeletes();