菜单添加标签

This commit is contained in:
liu
2026-08-11 10:46:08 +08:00
parent 1890c5882b
commit 1b8a0f2d0b
7 changed files with 36 additions and 1 deletions
@@ -30,6 +30,7 @@ return new class extends Migration
$table->increments('id');
$table->integer('category_id')->default(0)->comment('所属分类ID');
$table->string('title', 100)->comment('导航标题');
$table->json('tag')->comment('导航标签');
$table->integer('image_id')->comment('导航图标信息');
$table->string('link', 500)->nullable()->default('')->comment('跳转链接');
$table->unsignedTinyInteger('status')->default(0)->comment('状态:0=启用,1=禁用');