increments('id'); $table->string('adcode')->comment('行政编码'); $table->string('name')->comment('名字'); $table->string('center')->comment('经纬度'); $table->string('level')->comment('级别'); $table->integer('parent_id')->default(0); $table->integer('sort')->default(0)->comment('排序'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('districts'); } }