Use INSERT OR REPLACE to allow changing votes

debian
Jan Dittberner 7 years ago committed by Jan Dittberner
parent 12dd0717ad
commit 8d0e0eeb1b

@ -114,7 +114,7 @@ FROM decisions
WHERE status = 0 AND id NOT IN (SELECT decision FROM votes WHERE voter = $1)
ORDER BY due ASC`,
sqlCreateVote: `
INSERT INTO votes (decision, voter, vote, voted, notes)
INSERT OR REPLACE INTO votes (decision, voter, vote, voted, notes)
VALUES (:decision, :voter, :vote, :voted, :notes)`,
sqlLoadVote: `
SELECT decision, voter, vote, voted, notes

Loading…
Cancel
Save