diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2018-03-04 22:13:14 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-04 22:13:14 +0900 |
commit | 22a67927f1c3e0fbc6a77b9b1c8892166a171c78 (patch) | |
tree | 3d6250fb680e825f4fd01dca90de6049f5811f57 | |
parent | e137831726c20b50fd0b1b280f17d3fdf338c690 (diff) | |
parent | ccf66ab383184a1b3a8a120298ce143ddfeb1f15 (diff) | |
download | rails-22a67927f1c3e0fbc6a77b9b1c8892166a171c78.tar.gz rails-22a67927f1c3e0fbc6a77b9b1c8892166a171c78.tar.bz2 rails-22a67927f1c3e0fbc6a77b9b1c8892166a171c78.zip |
Merge pull request #32164 from ydakuka/patch-1
Fix links in the psql guide [ci skip]
-rw-r--r-- | guides/source/active_record_postgresql.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/active_record_postgresql.md b/guides/source/active_record_postgresql.md index 58c61f0864..6c6c6a1ded 100644 --- a/guides/source/active_record_postgresql.md +++ b/guides/source/active_record_postgresql.md @@ -84,7 +84,7 @@ Book.where("array_length(ratings, 1) >= 3") ### Hstore * [type definition](https://www.postgresql.org/docs/current/static/hstore.html) -* [functions and operators](https://www.postgresql.org/docs/current/static/hstore.html#AEN179902) +* [functions and operators](https://www.postgresql.org/docs/current/static/hstore.html#id-1.11.7.26.5) NOTE: You need to enable the `hstore` extension to use hstore. @@ -290,7 +290,7 @@ SELECT n.nspname AS enum_schema, ### UUID * [type definition](https://www.postgresql.org/docs/current/static/datatype-uuid.html) -* [pgcrypto generator function](https://www.postgresql.org/docs/current/static/pgcrypto.html#AEN182570) +* [pgcrypto generator function](https://www.postgresql.org/docs/current/static/pgcrypto.html#id-1.11.7.35.7) * [uuid-ossp generator functions](https://www.postgresql.org/docs/current/static/uuid-ossp.html) NOTE: You need to enable the `pgcrypto` (only PostgreSQL >= 9.4) or `uuid-ossp` |