Skip to content

Instantly share code, notes, and snippets.

@autumn-hoerr
Last active December 24, 2015 13:09
Show Gist options
  • Save autumn-hoerr/6802903 to your computer and use it in GitHub Desktop.
Save autumn-hoerr/6802903 to your computer and use it in GitHub Desktop.
order a model by the number of an associated records it has
scope :order_by_activities, joins(:activities).select('users.id, users.name, count(activities) as total_activities').group('users.id').order('total_activities desc')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment