aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-05-08 17:44:40 +0300
committerJosé Valim <jose.valim@gmail.com>2010-05-08 17:46:39 +0300
commit6626833db13a69786f9f6cd56b9f53c4017c3e39 (patch)
tree1eb94d190f7645c8c6e38999025d0d4327e51d61 /activerecord/CHANGELOG
parent5b95730edc33ee97f53da26a3868eb983305a771 (diff)
downloadrails-6626833db13a69786f9f6cd56b9f53c4017c3e39.tar.gz
rails-6626833db13a69786f9f6cd56b9f53c4017c3e39.tar.bz2
rails-6626833db13a69786f9f6cd56b9f53c4017c3e39.zip
Revert "Add index length support for MySQL [#1852 state:open]"
This commit breaks dumping a few tables, as the sessions table. To reproduce, just create a new application and: rake db:sessions:create rake db:migrate rake db:test:prepare And then look at the db/schema.rb file (ht: Sam Ruby). This reverts commit 5b95730edc33ee97f53da26a3868eb983305a771.
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r--activerecord/CHANGELOG10
1 files changed, 0 insertions, 10 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index d8f68d7c28..3f42fa34ef 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,15 +1,5 @@
*Rails 3.0.0 [beta 4/release candidate] (unreleased)*
-* Add index length support for MySQL. #1852 [Emili Parreno, Pratik Naik]
-
- Example:
-
- add_index(:accounts, :name, :name => 'by_name', :length => 10)
- => CREATE INDEX by_name ON accounts(name(10))
-
- add_index(:accounts, [:name, :surname], :name => 'by_name_surname', :length => {:name => 10, :surname => 15})
- => CREATE INDEX by_name_surname ON accounts(name(10), surname(15))
-
* find_or_create_by_attr(value, ...) works when attr is protected. #4457 [Santiago Pastorino, Marc-André Lafortune]
* New callbacks: after_commit and after_rollback. Do expensive operations like image thumbnailing after_commit instead of after_save. #2991 [Brian Durand]