1
0
Fork 0

更新 database/migrations/2023_08_29_173909_create_keywords_table.php

panliang 2023-10-08 15:17:58 +08:00
parent 2313476493
commit a8d6c45b65
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ return new class extends Migration
$table->unsignedBigInteger('parent_id')->default(0)->comment('上级ID');
$table->unsignedInteger('level')->default(1)->comment('层级');
$table->string('path')->default('-')->comment('所有的父级ID');
$table->json('data')->nullable()->comment('扩展');
$table->json('options')->nullable()->comment('扩展');
$table->timestamps();
});
}