mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-24 08:02:14 +03:00
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.
6 lines
354 B
SQL
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';
|