aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/schema_dumper.rb
diff options
context:
space:
mode:
authorKen Mazaika <kenmazaika@gmail.com>2013-03-27 22:38:53 -0400
committerKen Mazaika <kenmazaika@gmail.com>2013-03-27 22:38:53 -0400
commita89e9f70b24fe9c6b4f7b9343f4dc143928f2bdb (patch)
tree7d9b070fa6ebee2b3724a747d9dd43d049616d0e /activerecord/lib/active_record/schema_dumper.rb
parent57fbcc524780ce386241c8def372984583e585d6 (diff)
downloadrails-a89e9f70b24fe9c6b4f7b9343f4dc143928f2bdb.tar.gz
rails-a89e9f70b24fe9c6b4f7b9343f4dc143928f2bdb.tar.bz2
rails-a89e9f70b24fe9c6b4f7b9343f4dc143928f2bdb.zip
Dump the 'using' options for a SQL index into the schema.
Diffstat (limited to 'activerecord/lib/active_record/schema_dumper.rb')
-rw-r--r--activerecord/lib/active_record/schema_dumper.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/schema_dumper.rb b/activerecord/lib/active_record/schema_dumper.rb
index fa9de926c5..47cbdbef1a 100644
--- a/activerecord/lib/active_record/schema_dumper.rb
+++ b/activerecord/lib/active_record/schema_dumper.rb
@@ -185,6 +185,8 @@ HEADER
statement_parts << ('where: ' + index.where.inspect) if index.where
+ statement_parts << ('using: ' + index.using.inspect) if index.using
+
' ' + statement_parts.join(', ')
end