id(); $table->unsignedBigInteger('follower_id'); $table->unsignedBigInteger('followed_id'); $table->timestamps(); $table->unique([ 'follower_id', 'followed_id']); $table->foreign('follower_id')->references('id')->on('users'); $table->foreign('followed_id')->references('id')->on('users'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('follows'); } };