Created
May 15, 2014 21:49
-
-
Save rojotek/8b666b4ae099fe6d28d9 to your computer and use it in GitHub Desktop.
Simple model for has_one discussion.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Employee | |
belongs_to: :department | |
end | |
class Departmet | |
belongs_to :organization | |
has_many :employees | |
end | |
class Organization | |
has_many :departments | |
has_many :employees through: :departments | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment