aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorSean Griffin <sean@thoughtbot.com>2015-08-06 16:24:09 -0600
committerSean Griffin <sean@thoughtbot.com>2015-08-06 16:24:09 -0600
commit0cfa496697662a2a8cca3ce10591d846b8b43e14 (patch)
tree73c87650a24ab6470cf98b5c91585a8f36997b5f /activerecord/CHANGELOG.md
parent6caeec53d56ccd4085619435930b744bcbaf13fa (diff)
parent7f2037a990fd81e07f612169f72e8d59fc2a4e52 (diff)
downloadrails-0cfa496697662a2a8cca3ce10591d846b8b43e14.tar.gz
rails-0cfa496697662a2a8cca3ce10591d846b8b43e14.tar.bz2
rails-0cfa496697662a2a8cca3ce10591d846b8b43e14.zip
Merge pull request #20459
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 5f273d53f2..f9e69533c7 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,18 @@
+* Added methods for PostgreSQL geometric data types to use in migrations
+
+ Example:
+
+ create_table :foo do |t|
+ t.line :foo_line
+ t.lseg :foo_lseg
+ t.box :foo_box
+ t.path :foo_path
+ t.polygon :foo_polygon
+ t.circle :foo_circle
+ end
+
+ *Mehmet Emin İNAÇ*
+
* Add `cache_key` to ActiveRecord::Relation.
Example: