有没有像
https://github.com/eladmeidar/rails_indexes这样的宝石或插件,它适用于rails3?
解决方法
您可以在控制台中粘贴以下代码,以了解缺少的外键索引.但是,这不是你提到的插件的能力.它只搜索在其列名称末尾具有_id的rails样式外键.
c = ActiveRecord::Base.connection c.tables.collect do |t| columns = c.columns(t).collect(&:name).select {|x| x.ends_with?("_id" || x.ends_with("_type"))} indexed_columns = c.indexes(t).collect(&:columns).flatten.uniq unindexed = columns - indexed_columns unless unindexed.empty? puts "#{t}: #{unindexed.join(",")}" end end