static async updateComment(id, updateComments) {
    try {
      const results = await database.update(updateComments, { where: { id }, returning: true });
      return results;
    } catch (error) {