Created
July 27, 2016 01:31
-
-
Save eduardopoleo/c39420f5cae38fb7a43bc2f8b2fe463a to your computer and use it in GitHub Desktop.
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 City < ActiveRecord::Base | |
| has_many :libraries | |
| end | |
| class Library < ActiveRecord::Base | |
| belongs_to :city | |
| has_many :books | |
| end | |
| class Book < ActiveRecord::Base | |
| belongs_to :library | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment