From 60ddc15a177f5aff400efca27fa1855e8f60489f Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Tue, 8 Dec 2015 19:42:50 -0600 Subject: [PATCH] Add a link for more details to the latest til. --- postgres/max-identifier-length-is-63-bytes.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/postgres/max-identifier-length-is-63-bytes.md b/postgres/max-identifier-length-is-63-bytes.md index 8408b07..215e983 100644 --- a/postgres/max-identifier-length-is-63-bytes.md +++ b/postgres/max-identifier-length-is-63-bytes.md @@ -24,3 +24,5 @@ convention of terminating with, for example, `_fkey`. The 63 byte limit is not arbitrary. It comes from `NAMEDATALEN - 1`. By default `NAMEDATALEN` is 64. If need be, this value can be modified in the Postgres source. Yay, open-source database implementations. + +See [the postgres docs](http://www.postgresql.org/docs/current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS) for more details.