Added Update Article.

This commit is contained in:
2018-11-27 19:57:21 +11:00
parent 0bf91d2bed
commit b629d8c245
5 changed files with 100 additions and 4 deletions

View File

@ -0,0 +1,12 @@
UPDATE
"BlogArticles"
SET
"title"=${title},
"image"=${image},
"shortDescription"=${shortDescription},
"description"=${description}
WHERE
"id"=${id}
RETURNING
*
;