aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2017-04-16 05:17:14 +0900
committerRyuta Kamizono <kamipo@gmail.com>2017-04-16 07:58:10 +0900
commit606830d27a32fab23c0964b4383807fcdfdd7eba (patch)
tree7d057eaeeab90fbc3e7c8347d0ea9d99aabe0228 /activerecord/CHANGELOG.md
parent1a92ae8318c3f5720907dec671d9ebb9221c0817 (diff)
downloadrails-606830d27a32fab23c0964b4383807fcdfdd7eba.tar.gz
rails-606830d27a32fab23c0964b4383807fcdfdd7eba.tar.bz2
rails-606830d27a32fab23c0964b4383807fcdfdd7eba.zip
Support Descending Indexes for MySQL
MySQL 8.0.1 and higher supports descending indexes: `DESC` in an index definition is no longer ignored. See https://dev.mysql.com/doc/refman/8.0/en/descending-indexes.html.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index ffe588b3c5..f74425b281 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,10 @@
+* Support Descending Indexes for MySQL.
+
+ MySQL 8.0.1 and higher supports descending indexes: `DESC` in an index definition is no longer ignored.
+ See https://dev.mysql.com/doc/refman/8.0/en/descending-indexes.html.
+
+ *Ryuta Kamizono*
+
* Fix inconsistency with changed attributes when overriding AR attribute reader.
*bogdanvlviv*