bigIncrements('id'); $table->bigInteger('admin_id')->default(0)->comment('管理员id'); $table->bigInteger('area_id')->default(0)->comment('区域id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('admin_area'); } }