From f5a1d3e6b543a194756f8c36b167cf1af7cbff38 Mon Sep 17 00:00:00 2001 From: panliang <1163816051@qq.com> Date: Fri, 1 Dec 2023 09:36:33 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20database/migrations/2023?= =?UTF-8?q?=5F08=5F29=5F173909=5Fcreate=5Fkeywords=5Ftable.php?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- database/migrations/2023_08_29_173909_create_keywords_table.php | 1 - 1 file changed, 1 deletion(-) diff --git a/database/migrations/2023_08_29_173909_create_keywords_table.php b/database/migrations/2023_08_29_173909_create_keywords_table.php index 9ccacef..15e2f63 100644 --- a/database/migrations/2023_08_29_173909_create_keywords_table.php +++ b/database/migrations/2023_08_29_173909_create_keywords_table.php @@ -19,7 +19,6 @@ return new class extends Migration $table->text('description')->nullable(); $table->text('content')->nullable(); $table->string('image')->nullable(); - $table->string('type_key')->nullable(); $table->unsignedInteger('sort')->default(0)->comment('排序(倒序)'); $table->unsignedBigInteger('parent_id')->default(0)->comment('上级ID'); $table->unsignedInteger('level')->default(1)->comment('层级');