id(); $table->string('name')->comment('名称'); $table->integer('level')->comment('等级'); $table->integer('parent_id')->nullable(); $table->string('route')->comment('路由地址'); $table->integer('sequence')->comment('顺序'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('menus'); } }