Created
June 2, 2016 12:20
-
-
Save aldesantis/19c8cb5cb0772a055e41cb624909443c to your computer and use it in GitHub Desktop.
This file contains 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 Book < ActiveRecord::Base | |
has_many :reviews | |
end |
This file contains 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 Review < ActiveRecord::Base | |
belongs_to :book, counter_cache: true | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment