Skip to content

Instantly share code, notes, and snippets.

@carloscortegagna
Created July 3, 2012 08:03
Show Gist options
  • Save carloscortegagna/3038386 to your computer and use it in GitHub Desktop.
Save carloscortegagna/3038386 to your computer and use it in GitHub Desktop.
Rails: list foreign keys which aren't indexed
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment