if (userColumn === 'subscribed') {
      const { subscribed } = updatedUser[1][0].dataValues;
      if (subscribed === newNotificationStatus) {
        const message = subscribed === true ? 'You have successfully subscribed to our email notifications' : 'You will no longer receive email notifications from us';
        return res.status(200).json({ message, statusCode: 200 });