Last active
November 7, 2015 03:34
-
-
Save pinzolo/550ae8a7e711c6ce9514 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
# Rails3 | |
class Course < ActiveRecord::Base | |
has_many :students, order: :name, include: [:parents, :brothers], dependent: :destroy | |
end | |
# Rails4 | |
class Course < ActiveRecord::Base | |
has_many :students, ->{ order(:name).includes(:parents, :brothers) }, dependent: :destroy | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment