aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorMehmet Emin İNAÇ <mehmetemininac@gmail.com>2015-06-08 10:57:03 +0300
committerMehmet Emin İNAÇ <mehmetemininac@gmail.com>2015-06-08 10:57:03 +0300
commit7f2037a990fd81e07f612169f72e8d59fc2a4e52 (patch)
treeda47ca90d8d548b1643d63a13f01e4d08642a0dd /activerecord/CHANGELOG.md
parent1a971d0f1013aca74024abf5c04a3700242bf541 (diff)
downloadrails-7f2037a990fd81e07f612169f72e8d59fc2a4e52.tar.gz
rails-7f2037a990fd81e07f612169f72e8d59fc2a4e52.tar.bz2
rails-7f2037a990fd81e07f612169f72e8d59fc2a4e52.zip
Add missing data types for ActiveRecord migrations
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 02b2096ef6..15540f70b4 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Ç*
+
* Deprecate the PG `:point` type in favor of a new one which will return
`Point` objects instead of an `Array`