increments('id'); $table->string('name', 60); $table->string('student_id', 60); $table->string('course', 60); $table->timestamps(); $table->integer('election_id')->unsigned(); $table->foreign('election_id') ->references('id') ->on('election') ->onDelete('cascade'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('voter'); } }