2026-01-27 14:29:55 +00:00
|
|
|
-- +goose Up
|
|
|
|
|
ALTER TABLE comms.text_log ADD COLUMN twilio_sid TEXT UNIQUE;
|
|
|
|
|
ALTER TABLE comms.text_log ADD COLUMN twilio_status TEXT;
|
|
|
|
|
UPDATE comms.text_log SET twilio_status = '';
|
|
|
|
|
ALTER TABLE comms.text_log ALTER COLUMN twilio_status SET NOT NULL;
|
2026-01-27 18:44:02 +00:00
|
|
|
ALTER TABLE comms.text_log ADD COLUMN is_visible_to_llm BOOLEAN;
|
|
|
|
|
UPDATE comms.text_log SET is_visible_to_llm = FALSE;
|
|
|
|
|
ALTER TABLE comms.text_log ALTER COLUMN is_visible_to_llm SET NOT NULL;
|
|
|
|
|
ALTER TYPE comms.TextOrigin ADD VALUE 'command-response';
|
2026-01-27 14:29:55 +00:00
|
|
|
-- +goose Down
|
2026-01-27 18:44:02 +00:00
|
|
|
ALTER TABLE comms.text_log DROP COLUMN is_visible_to_llm;
|
2026-01-27 14:29:55 +00:00
|
|
|
ALTER TABLE comms.text_log DROP COLUMN twilio_status;
|
|
|
|
|
ALTER TABLE comms.text_log DROP COLUMN twilio_sid;
|