Files
mach_examples/05_todo_sse_datastar/update_todo.sql
2026-05-27 16:40:43 -05:00

6 lines
118 B
SQL

update todos
set finished = {{finished}}
where user_id = {{user_id}}
and id = {{id}}
returning id, title, finished;