From f4165111d55c32e9a01cb9ecd267ff9f1ffd626f Mon Sep 17 00:00:00 2001 From: diegosouzapw Date: Sun, 7 Jun 2026 11:17:12 -0300 Subject: [PATCH] fix(migrations): restore 095_provider_node_custom_headers (deleted again by #3371 squash) Same issue as after #3365: git rm in the contributor cleanup commit was included in the squash, deleting this migration from release. Permanent fix needed: use 'git checkout origin/release -- ' instead of 'git rm' when cleaning up duplicate files in contributor branches. --- src/lib/db/migrations/095_provider_node_custom_headers.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/lib/db/migrations/095_provider_node_custom_headers.sql 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;