aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorPaul Kuruvilla <rohitpaulk@gmail.com>2017-10-24 19:03:37 +0530
committerPaul Kuruvilla <rohitpaulk@gmail.com>2017-10-24 22:39:44 +0530
commit82ae8369925e152d507486f7520558ac09f090e8 (patch)
tree08eccd87dc45e82760eac0d7ee2c0d82efc9265f /activerecord/CHANGELOG.md
parent4aac0bf66c1d18c23f2096d9a343dbf9a95cbf23 (diff)
downloadrails-82ae8369925e152d507486f7520558ac09f090e8.tar.gz
rails-82ae8369925e152d507486f7520558ac09f090e8.tar.bz2
rails-82ae8369925e152d507486f7520558ac09f090e8.zip
Save index order :desc to schema.rb (sqlite). Fixes #30902
Although the sqlite adapter supports index sort orders, they weren't being written to db/schema.rb.
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 ee73004810..3e1b467633 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,10 @@
+* Fixed a bug where column orders for an index weren't written to
+ db/schema.rb when using the sqlite adapter.
+
+ Fixes #30902.
+
+ *Paul Kuruvilla*
+
* Remove deprecated method `#sanitize_conditions`.
*Rafael Mendonça França*