integer('parent_id')->nullable()->unsigned(); $table->foreign('parent_id')->references('id')->on('users'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table) { $table->dropForeign(['parent_id']); $table->dropColumn('parent_id'); }); } }