increments('id'); $table->string('name')->comment('单项分类名称'); $table->unsignedInteger('sort')->comment('排序'); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('single_cate'); } }