Skip to content

Instantly share code, notes, and snippets.

@raholland79
Created May 6, 2010 18:18
Show Gist options
  • Save raholland79/392492 to your computer and use it in GitHub Desktop.
Save raholland79/392492 to your computer and use it in GitHub Desktop.
class Account
has_many :users
has_many :offices
end
class Office
belongs_to :account
has_many :users
end
class User
belongs_to :account
has_one :office
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment