increments('id'); $table->string('text'); $table->char('poll_id', 6); $table->foreign('poll_id')->references('id')->on('polls'); }); } /** * Reverse the migrations. * * @return void */ public function down() { $table->dropForeign(['poll_id']); Schema::dropIfExists('poll_options'); } }