increments('id'); $table->timestamps(); $table->integer('game_id')->unsigned()->nullable(); $table->integer('sentence_id')->unsigned()->nullable(); $table->foreign('game_id')->references('id')->on('games'); $table->foreign('sentence_id')->references('id')->on('sentences'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('game_sentence'); } }