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