Files
OmniRoute/src/lib/db/migrations/099_proxy_family.sql
Diego Rodrigues de Sa e Souza 76a07cf7a5 Release v3.8.24 (#3747)
Release v3.8.24 — see CHANGELOG.md [3.8.24] for the full notes and the PR description for the contributors hall. Integration of release/v3.8.24 into main.
2026-06-13 17:27:40 -03:00

6 lines
354 B
SQL

-- Migration 099: Per-proxy address-family egress policy
-- 'auto' (default) lets the OS pick; 'ipv4' forces IPv4-only; 'ipv6' forces
-- all egress through that proxy over IPv6 only (fail-closed).
ALTER TABLE proxy_registry ADD COLUMN family TEXT NOT NULL DEFAULT 'auto';
ALTER TABLE upstream_proxy_config ADD COLUMN family TEXT NOT NULL DEFAULT 'auto';