Spaces:
Runtime error
Runtime error
File size: 261 Bytes
cd8bd0a | 1 2 3 4 5 | -- Migration 045: Add tokens_compressed to call_logs
-- Tracks how many tokens were removed by proactive context compression.
-- NULL = compression not applied. N > 0 = tokens eliminated.
ALTER TABLE call_logs ADD COLUMN tokens_compressed INTEGER DEFAULT NULL;
|