increments('id'); $table->string('name'); $table->integer('section_id')->unsigned()->nullable(); $table->foreign('section_id')->references('id')->on('sections'); $table->integer('season_id')->unsigned()->nullable(); $table->foreign('season_id')->references('id')->on('seasons'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('calendars'); } }