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