mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Fixed incorrect canned query example, closes #966
This commit is contained in:
parent
cb515a9d75
commit
853c5fc370
1 changed files with 2 additions and 2 deletions
|
|
@ -316,9 +316,9 @@ Here's an example configuration (this time using ``metadata.yaml`` since that pr
|
||||||
id: "*"
|
id: "*"
|
||||||
sql: |-
|
sql: |-
|
||||||
INSERT INTO messages (
|
INSERT INTO messages (
|
||||||
user_id, ip, message, datetime
|
user_id, message, datetime
|
||||||
) VALUES (
|
) VALUES (
|
||||||
:_actor_id, :_request_ip, :message, :_now_datetime_utc
|
:_actor_id, :message, :_now_datetime_utc
|
||||||
)
|
)
|
||||||
write: true
|
write: true
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue