bigIncrements('id'); $table->bigInteger('user_id')->unsigned()->index(); $table->bigInteger('profile_id')->unsigned()->index(); $table->bigInteger('hashtag_id')->unsigned()->index(); $table->unique(['user_id', 'profile_id', 'hashtag_id']); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('hashtag_follows'); } }