5 lines
88 B
MySQL
5 lines
88 B
MySQL
|
|
update todos
|
||
|
|
set finished = {{finished}}
|
||
|
|
where user_id = {{user_id}}
|
||
|
|
and id = {{id}};
|