bigIncrements('id'); $table->unsignedBigInteger('user_id'); $table->string('caption'); $table->string('image'); $table->timestamps(); $table->index('user_id'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('posts'); } }