Skip to content

Instantly share code, notes, and snippets.

@Frank004
Created October 24, 2016 15:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Frank004/04177f9121dd14d5824008b9a447a6a8 to your computer and use it in GitHub Desktop.
Save Frank004/04177f9121dd14d5824008b9a447a6a8 to your computer and use it in GitHub Desktop.
User
belongs_to :company
Company
has_many :employees, class_name: "User"
has_many :clients, class_name: "User"
# ----
companyA.clients.count
3
companyA.employees.count
3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment