aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2008-03-28 21:21:01 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2008-03-28 21:21:01 +0000
commitc00de99f69358b58ca2bd6bc732e2de1b667800e (patch)
treefd5d4855a64bb15a99494b7efdb62f4798321a52 /activerecord/CHANGELOG
parentad8df03f9c831d88b8a7eb80c1b7dbcf02fc1b19 (diff)
downloadrails-c00de99f69358b58ca2bd6bc732e2de1b667800e.tar.gz
rails-c00de99f69358b58ca2bd6bc732e2de1b667800e.tar.bz2
rails-c00de99f69358b58ca2bd6bc732e2de1b667800e.zip
Switched to UTC-timebased version numbers for migrations and the schema. This will as good as eliminate the problem of multiple migrations getting the same version assigned in different branches. Also added rake db:migrate:up/down to apply individual migrations that may need to be run when you merge branches (closes #11458) [jbarnette]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9122 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 e8916b8d76..eed88ce4ae 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Switched to UTC-timebased version numbers for migrations and the schema. This will as good as eliminate the problem of multiple migrations getting the same version assigned in different branches. Also added rake db:migrate:up/down to apply individual migrations that may need to be run when you merge branches #11458 [jbarnette]
+
* Fixed that has_many :through would ignore the hash conditions #11447 [miloops]
* Fix issue where the :uniq option of a has_many :through association is ignored when find(:all) is called. Closes #9407 [cavalle]