bullet icon indicating copy to clipboard operation
bullet copied to clipboard

missing n+1 queries warning

Open flyerhzm opened this issue 9 years ago • 0 comments

classroom has_and_belongs_to_many campuses campus belongs_to city

Classroom.all.each do |classroom|
  classroom.campuses.each do |campus|
    campus.city.name
  end
end

bullet didn't give any warning

flyerhzm avatar May 20 '15 03:05 flyerhzm