mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-20 22:22:57 +03:00
5 lines
261 B
SQL
5 lines
261 B
SQL
-- 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;
|