increments('id'); $table->string('name')->comment('位置名称'); $table->tinyInteger('sort')->default(0)->comment('排序'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('positions'); } }