bigIncrements('id'); $table->bigInteger('carrier_id')->comment('承运商表'); $table->bigInteger('user_id')->comment('用户表'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('carrier_user'); } }