From 93c7e7ccaae2746cefd8965ba67ecfa7c73fe55e Mon Sep 17 00:00:00 2001 From: Kyle Gray Date: Fri, 10 Nov 2023 10:15:00 -0800 Subject: [PATCH] docs: Link to current PostgreSQL data types page The data types link pointed at PostgreSQL 9.5. Update the link to always point to the latest version of PostgreSQL. --- docs/pages/features/types.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/features/types.mdx b/docs/pages/features/types.mdx index 808d2e185..36e8b7035 100644 --- a/docs/pages/features/types.mdx +++ b/docs/pages/features/types.mdx @@ -4,7 +4,7 @@ title: Data Types import { Alert } from '/components/alert.tsx' -PostgreSQL has a rich system of supported [data types](https://www.postgresql.org/docs/9.5/static/datatype.html). node-postgres does its best to support the most common data types out of the box and supplies an extensible type parser to allow for custom type serialization and parsing. +PostgreSQL has a rich system of supported [data types](https://www.postgresql.org/docs/current/datatype.html). node-postgres does its best to support the most common data types out of the box and supplies an extensible type parser to allow for custom type serialization and parsing. ## strings by default