id('code'); $table->string('name')->comment('地区'); $table->unsignedTinyInteger('level')->index(); $table->unsignedBigInteger('pcode')->index()->comment('上级区划'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('china_areas'); } }