bigIncrements('id'); $table->integer('docter_id')->comment('医生表主键'); $table->integer('user_id')->comment('用户表主键'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('docter_user'); } }