Skip to content

Commit

Permalink
[Scripts] Accept "Mark Antony" trivia answer for "Antony"
Browse files Browse the repository at this point in the history
  • Loading branch information
Harmon758 committed Jul 28, 2023
1 parent 9677719 commit db0bb06
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions scripts/update_trivia.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,15 @@

# Add acceptable answers

connection.execute(
"""
UPDATE trivia.clues
SET acceptable_answers = ARRAY['Antony', 'Mark Antony']
WHERE answer = 'Antony'
"""
)
connection.commit()

connection.execute(
"""
UPDATE trivia.clues
Expand Down

0 comments on commit db0bb06

Please sign in to comment.