increments('id'); $table->integer('kart_id')->unsigned(); $table->foreign('kart_id')->references('id')->on('karts')->onDelete('no action'); $table->integer('pilot_id')->unsigned(); $table->foreign('pilot_id')->references('id')->on('pilots')->onDelete('no action'); $table->timestamp('relay_start'); $table->boolean('fuel'); $table->text('comment'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('relays'); } }