Update local clickhouse sql (#80)

Add messages.mode.
This commit is contained in:
John Richmond 2025-06-06 11:20:21 -07:00 committed by GitHub
parent 0ac5a5665b
commit fff8dc3474
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -46,7 +46,8 @@ CREATE TABLE IF NOT EXISTS default.messages
`text` Nullable(String),
`reasoning` Nullable(String),
`partial` Nullable(Bool),
`timestamp` Int32
`timestamp` Int32,
`mode` Nullable(String)
)
ENGINE = MergeTree()
ORDER BY (id, timestamp)