id(); $table->integer('team_id')->unsigned(); $table->bigInteger('vacancy_id')->unsigned(); $table->timestamps(); $table->foreign('team_id') ->references('id') ->on(config('teamwork.teams_table')); $table->foreign('vacancy_id') ->references('id') ->on('vacancies'); }); } /** * Reverse the migrations. * * @return void */ public function down() { // } }