ruby-on-rails – Rails:gem / plugin找到缺失的索引?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Rails:gem / plugin找到缺失的索引?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有像 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

Source

原文链接:https://www.f2er.com/ruby/266950.html

猜你在找的Ruby相关文章