Model.prototype.prev = async function prev() {
    return Model.findOne({
      where: addTreeToCondition({ rgt: this.lft - 1 }, this.tree),
    });
  };