aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorMartin Schuster <schuster@schul-logistik.de>2019-06-04 15:47:21 +0200
committerMartin Schuster <schuster@schul-logistik.de>2019-06-04 15:47:21 +0200
commit86d3f251c802575fa1414a10f2981566002c19d4 (patch)
treecb1b288f76e81e2cb983eb14d66c6049cd57b3d6 /activerecord/CHANGELOG.md
parent0244a10b7f05105bc4e476c2f28e4febb769307c (diff)
downloadrails-86d3f251c802575fa1414a10f2981566002c19d4.tar.gz
rails-86d3f251c802575fa1414a10f2981566002c19d4.tar.bz2
rails-86d3f251c802575fa1414a10f2981566002c19d4.zip
Fix sqlite3 collation parsing when using decimal columns.
If an sqlite3 table contains a decimal column behind columns with a collation definition, then parsing the collation of all preceeding columns will fail -- the collation will be missed without notice.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 6f08b1b8fe..7cc9ee92c2 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,7 @@
+* Fix sqlite3 collation parsing when using decimal columns.
+
+ *Martin R. Schuster*
+
* Fix invalid schema when primary key column has a comment
Fixes #29966