mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-19 05:32:19 +03:00
Conflicts: migrations 073/074/075->080/081/082; localDb/.env.example/openapi union; i18n deep-merge; request.ts+i18n-fallback->base (deepMergeFallback, drop old getNestedValue); REPOSITORY_MAP dedup; .source regenerated via fumadocs-mdx (+AGENTBRIDGE/TRAFFIC_INSPECTOR docs). Pre-existing #2858 gaps fixed: sidebar-visibility.test.ts expected list missing agent-bridge/traffic-inspector (code already had them); documented 10 INSPECTOR/AGENTBRIDGE env vars in ENVIRONMENT.md; NODE_TLS_REJECT_UNAUTHORIZED added to env-doc-sync IGNORE_FROM_CODE (instruction snippet, not OmniRoute config).
12 lines
383 B
SQL
12 lines
383 B
SQL
CREATE TABLE IF NOT EXISTS inspector_custom_hosts (
|
|
host TEXT PRIMARY KEY,
|
|
enabled INTEGER NOT NULL DEFAULT 1,
|
|
label TEXT,
|
|
kind TEXT NOT NULL DEFAULT 'custom' CHECK (kind IN ('llm','app','custom')),
|
|
added_at TEXT NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
last_seen_at TEXT
|
|
);
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_inspector_custom_hosts_enabled
|
|
ON inspector_custom_hosts(enabled);
|