aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2006-05-12 03:59:43 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2006-05-12 03:59:43 +0000
commit491b4a3c84194931de51c3331b028dcfcb606074 (patch)
tree7bef62758c05ccad52e63cf9955daca2a8c81f04 /activerecord/CHANGELOG
parentc069f361f090790b9769b349eefa260e57d4c63b (diff)
downloadrails-491b4a3c84194931de51c3331b028dcfcb606074.tar.gz
rails-491b4a3c84194931de51c3331b028dcfcb606074.tar.bz2
rails-491b4a3c84194931de51c3331b028dcfcb606074.zip
PostgreSQL: migrations support :limit with :integer columns by mapping limit < 4 to smallint, > 4 to bigint, and anything else to integer. Closes #2900.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4335 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r--activerecord/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index b8452543ca..17cb061d46 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* PostgreSQL: migrations support :limit with :integer columns by mapping limit < 4 to smallint, > 4 to bigint, and anything else to integer. #2900 [keegan@thebasement.org]
+
* Dates and times interpret empty strings as nil rather than 2000-01-01. #4830 [kajism@yahoo.com]
* Allow :uniq => true with has_many :through associations. [Jeremy Kemper]