aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorlsylvester <lachlan.sylvester@hypothetical.com.au>2014-03-11 08:10:25 +1100
committerlsylvester <lachlan.sylvester@hypothetical.com.au>2014-03-11 08:14:03 +1100
commitb3e0da3062f809599fb4da9f9a29ed45aebd1ff6 (patch)
tree6bdc95ed7456bf88d9c90b6f10980ef71be15e12 /activerecord/CHANGELOG.md
parentd41154094a332a3dd797c4148894fbcd1e5ad5ff (diff)
downloadrails-b3e0da3062f809599fb4da9f9a29ed45aebd1ff6.tar.gz
rails-b3e0da3062f809599fb4da9f9a29ed45aebd1ff6.tar.bz2
rails-b3e0da3062f809599fb4da9f9a29ed45aebd1ff6.zip
register OID for PostgreSQL citex datatype [Troy Kruthoff & Lachlan Sylvester]
citext makes it possible to use AR Hash finders for case-insensitive matching as sql UPPER/LOWER functions are not needed.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 300c3761f1..2e4f653ea6 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,8 @@
+* Support for Postgres `citext` data type enabling case-insensitive where
+ values without needing to wrap in UPPER/LOWER sql functions.
+
+ *Troy Kruthoff*, *Lachlan Sylvester*
+
* Only save has_one associations if record has changes.
Previously after save related callbacks, such as `#after_commit`, were triggered when the has_one
object did not get saved to the db.