fix(migrate): v124 notice to stderr — the stdout-cleanliness guard caught it on master

Same class as #3019's v123 fix; the guard test added there flagged this
within one push. Route the notice through process.stderr.write.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Garry Tan
2026-07-20 16:12:18 -07:00
co-authored by Claude Fable 5
parent d698b44438
commit a5da889f44
+2 -1
View File
@@ -5667,7 +5667,8 @@ export const MIGRATIONS: Migration[] = [
END;
$fn$ LANGUAGE plpgsql;
`);
console.log(` v124: update_page_search_vector() no longer indexes compiled_truth (was overflowing tsvector on large pages, #2704)`);
process.stderr.write(` v124: update_page_search_vector() no longer indexes compiled_truth (was overflowing tsvector on large pages, #2704)
`);
},
},
];