increments('id'); $table->unsignedInteger('parent_id')->default(0); $table->string('title', 50); $table->string('path', 50)->nullable(); $table->integer('order')->default(0); $table->string('icon', 50)->nullable(); $table->tinyInteger('menu')->default(false); $table->tinyInteger('cache')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('vue_routers'); } }