Skip to content

Commit

Permalink
Init latest post timestamp with wiki addition
Browse files Browse the repository at this point in the history
  • Loading branch information
rossjrw committed May 4, 2024
1 parent fe5ddeb commit 45449ad
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions notifier/database/queries/store_context_wiki.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@ INSERT INTO
wiki_id,
wiki_name,
wiki_service_configured,
wiki_uses_https
wiki_uses_https,
new_posts_checked_timestamp
)
VALUES
(
%(wiki_id)s,
%(wiki_name)s,
%(wiki_service_configured)s,
%(wiki_uses_https)s
%(wiki_uses_https)s,
0
)
ON DUPLICATE KEY UPDATE
wiki_name = %(wiki_name)s,
Expand Down

0 comments on commit 45449ad

Please sign in to comment.