diff --git a/src/lib/db/migrations/095_provider_node_custom_headers.sql b/src/lib/db/migrations/095_provider_node_custom_headers.sql new file mode 100644 index 0000000000..b2952eafb2 --- /dev/null +++ b/src/lib/db/migrations/095_provider_node_custom_headers.sql @@ -0,0 +1,5 @@ +-- Add custom_headers_json column to provider_nodes +-- Stores JSON object of custom HTTP headers to send with requests to this provider +-- NULL = no custom headers (backward compatible) +-- Column uses _json suffix so rowToCamel auto-parses it +ALTER TABLE provider_nodes ADD COLUMN custom_headers_json TEXT;