increments('id'); $table->unsignedMediumInteger('pollid')->default(0)->index('pollid'); $table->unsignedMediumInteger('userid')->default(0)->index('userid'); $table->unsignedTinyInteger('selection')->default(0)->index('selection'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('pollanswers'); } }