Fixed incorrect canned query example, closes #966

This commit is contained in:
Simon Willison 2020-09-14 20:52:44 -07:00 committed by GitHub
commit 853c5fc370
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -316,9 +316,9 @@ Here's an example configuration (this time using ``metadata.yaml`` since that pr
id: "*"
sql: |-
INSERT INTO messages (
user_id, ip, message, datetime
user_id, message, datetime
) VALUES (
:_actor_id, :_request_ip, :message, :_now_datetime_utc
:_actor_id, :message, :_now_datetime_utc
)
write: true