public function getVotes() {
        $query = "SELECT v.*, u.username FROM image_competition_votes AS v LEFT JOIN nuke_users AS u ON u.user_id = v.user_id WHERE v.competition_id = ? ORDER BY v.date DESC";
        
        return $this->db->fetchAll($query, $this->id);
    }