id(); $table->bigInteger("parent_id")->nullable()->index()->comment("父级"); $table->string("name")->comment("名称"); $table->tinyInteger("type")->default(1)->comment("类型(行政区划)"); $table->string("code")->nullable()->comment("邮编"); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('regions'); } }