Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Daelso committed Oct 24, 2023
1 parent 1f8e611 commit c18bc65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/api/showlads.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ router.route("/fun_facts").get(lib.getLimiter, async (req, res) => {
"SELECT ckey, COUNT(*) AS role_count FROM showlads WHERE role = 'Bum' GROUP BY ckey ORDER BY role_count DESC LIMIT 1;"
),
sequelize.sequelize.query(
"SELECT role, COUNT(*) AS role_count FROM showlads GROUP BY role HAVING role_count > 40 ORDER BY role_count ASC LIMIT 1;"
"SELECT role, COUNT(*) AS role_count FROM showlads GROUP BY role HAVING role_count > 20 ORDER BY role_count ASC LIMIT 1;"
),
sequelize.sequelize.query(
"SELECT character_name, COUNT(*) AS played_count FROM showlads GROUP BY character_name ORDER BY COUNT(*) DESC LIMIT 1;"
Expand Down

0 comments on commit c18bc65

Please sign in to comment.