From f4b1a0a83dca983972b6c31074a03a9ec623fc20 Mon Sep 17 00:00:00 2001 From: fkmy Date: Thu, 12 Sep 2024 22:02:49 +0900 Subject: [PATCH] =?UTF-8?q?PostgreSQL=E3=81=AE=E3=83=AA=E3=83=B3=E3=82=AF?= =?UTF-8?q?=E5=85=88=E3=81=8Cv14=E3=81=A7=E5=9B=BA=E5=AE=9A=E3=81=95?= =?UTF-8?q?=E3=82=8C=E3=81=A6=E3=81=84=E3=81=9F=E3=81=AE=E3=81=A7=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- guides/source/ja/active_record_postgresql.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guides/source/ja/active_record_postgresql.md b/guides/source/ja/active_record_postgresql.md index 65d30721752..d03ad7e3a55 100644 --- a/guides/source/ja/active_record_postgresql.md +++ b/guides/source/ja/active_record_postgresql.md @@ -587,7 +587,7 @@ $ rails generate model Case device_id:uuid インデックス化 -------- -* [インデックス作成方法](https://www.postgresql.jp/document/14/html/sql-createindex.html) +* [インデックス作成方法](https://www.postgresql.jp/document/current/html/sql-createindex.html) PostgreSQLには豊富なインデックスオプションがあります。PostgreSQLアダプタでは、[よく使われるインデックスオプション][common index options]に加えて以下のオプションもサポートされています。 @@ -679,7 +679,7 @@ end 一意制約 ----------------- -* [一意性制約](https://www.postgresql.jp/document/14/html/ddl-constraints.html#DDL-CONSTRAINTS-UNIQUE-CONSTRAINTS) +* [一意性制約](https://www.postgresql.jp/document/current/html/ddl-constraints.html#DDL-CONSTRAINTS-UNIQUE-CONSTRAINTS) ```ruby # db/migrate/20230422225213_create_items.rb @@ -700,7 +700,7 @@ add_unique_constraint :items, deferrable: :deferred, using_index: "index_items_o 排他制約 --------------------- -* [排他制約](https://www.postgresql.jp/document/14/html/ddl-constraints.html#DDL-CONSTRAINTS-EXCLUSION) +* [排他制約](https://www.postgresql.jp/document/current/html/ddl-constraints.html#DDL-CONSTRAINTS-EXCLUSION) ```ruby # db/migrate/20131220144913_create_products.rb