aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/schema_dumper.rb
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/lib/active_record/schema_dumper.rb
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/lib/active_record/schema_dumper.rb')
-rw-r--r--activerecord/lib/active_record/schema_dumper.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/schema_dumper.rb b/activerecord/lib/active_record/schema_dumper.rb
index 5cb639a300..c8e1b4f53a 100644
--- a/activerecord/lib/active_record/schema_dumper.rb
+++ b/activerecord/lib/active_record/schema_dumper.rb
@@ -177,7 +177,6 @@ HEADER
statment_parts << index.columns.inspect
statment_parts << (':name => ' + index.name.inspect)
statment_parts << ':unique => true' if index.unique
- statment_parts << (':length => ' + Hash[*index.columns.zip(index.lengths).flatten].inspect) if index.lengths.compact.present?
' ' + statment_parts.join(', ')
end