static async updateArticle(slug, fieldToupdate) {
    try {
      const results = await db.update(fieldToupdate, { where: { slug }, returning: true });
      return results;
    } catch (error) {