increments('id'); $table->integer('calendar_id')->unsigned()->nullable(); $table->foreign('calendar_id')->references('id')->on('calendars'); $table->integer('team_id')->unsigned()->nullable(); $table->foreign('team_id')->references('id')->on('teams'); $table->integer('played'); $table->integer('wins'); $table->integer('dwars'); $table->integer('losts'); $table->integer('goals_scored'); $table->integer('goals_conceded'); $table->integer('points'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('calendar_games'); } }