Use INSERT OR REPLACE to allow changing votes
This commit is contained in:
parent
12dd0717ad
commit
8d0e0eeb1b
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue