rails_indexes
rails_indexes copied to clipboard
A rake task to track down missing database indexes. does not assume that all foreign keys end with the convention of _id.
Results
1
rails_indexes issues
Sort by
recently updated
recently updated
newest added
Discussion start in https://github.com/eladmeidar/rails_indexes/pull/23 by @mexxer ``` class Message < ActiveRecord::Base belongs_to :author, :class_name => "User" has_many :message_copies has_many :recipients, :through => :message_copies class MessageCopy < ActiveRecord::Base belongs_to :message belongs_to...