id(); $table->unsignedBigInteger('sender_request')->nullable(); $table->unsignedBigInteger('user_id')->nullable(); $table->integer('status')->default(1); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('friends'); } }