mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-09-19 21:32:20 +03:00
10 lines
338 B
SQL
10 lines
338 B
SQL
-- 035_standard_compression_config.sql
|
|
-- Adds Phase 2 standard/caveman compression defaults without overwriting user settings.
|
|
|
|
INSERT OR IGNORE INTO key_value (namespace, key, value)
|
|
VALUES (
|
|
'compression',
|
|
'cavemanConfig',
|
|
'{"enabled":true,"compressRoles":["user"],"skipRules":[],"minMessageLength":50,"preservePatterns":[]}'
|
|
);
|