smr/src/sql/update_post.sql

10 lines
99 B
SQL

UPDATE
posts
SET
post_title = ?,
post_text = ?,
isanon = ?,
unlisted = ?
WHERE
posts.id = ?;