docs: Link to current PostgreSQL data types page (#3097)

The data types link pointed at PostgreSQL 9.5. Update the link to always point to the latest version of PostgreSQL.
This commit is contained in:
Kyle Gray 2023-11-19 15:05:44 -08:00 committed by GitHub
parent e8259e04fc
commit a733b40f99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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