Add zblock_feed_info_update

This commit is contained in:
2024-11-23 15:33:10 -05:00
parent 44b1f80b9e
commit ca6d37a1cf
3 changed files with 29 additions and 15 deletions

View File

@ -42,4 +42,7 @@ zblock_feed_info_err zblock_feed_info_exists(PGconn *conn, const char *url, u64s
// Insert new feed into the database
zblock_feed_info_err zblock_feed_info_insert(PGconn *conn, zblock_feed_info *feed);
// updates the last_pubDate field of a given feed in the database
zblock_feed_info_err zblock_feed_info_update(PGconn *conn, zblock_feed_info_minimal *feed);
#endif