bigIncrements('id'); $table->bigInteger('follower_id')->unsigned()->index(); $table->bigInteger('following_id')->unsigned()->index(); $table->boolean('is_rejected')->default(false); $table->boolean('is_local')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('follow_requests'); } }