id(); $table->bigInteger('requester_id'); $table->bigInteger('receiver_id'); $table->boolean('accepted')->default(false); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('friendships'); } };