2026-01-27 18:44:02 +00:00
|
|
|
-- Code generated by BobGen psql v0.42.5. DO NOT EDIT.
|
2026-01-26 20:29:04 +00:00
|
|
|
-- This file is meant to be re-generated in place and/or deleted at any time.
|
|
|
|
|
|
|
|
|
|
-- TextsBySenders
|
|
|
|
|
SELECT
|
|
|
|
|
id,
|
|
|
|
|
content,
|
|
|
|
|
created,
|
|
|
|
|
source,
|
|
|
|
|
destination,
|
2026-01-27 18:44:02 +00:00
|
|
|
is_visible_to_llm,
|
2026-01-26 20:29:04 +00:00
|
|
|
is_welcome,
|
|
|
|
|
origin
|
|
|
|
|
FROM
|
|
|
|
|
comms.text_log
|
|
|
|
|
WHERE
|
|
|
|
|
(source = $1 AND destination = $2)
|
|
|
|
|
OR
|
|
|
|
|
(source = $3 AND destination = $4)
|
|
|
|
|
ORDER BY
|
|
|
|
|
created ASC;
|