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