Created
March 8, 2010 23:32
-
-
Save rbarazi/325932 to your computer and use it in GitHub Desktop.
[Beginning Rails 3] Listing 5-19. defaut_scope declaration in app/models/category.rb
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 Category < ActiveRecord::Base | |
has_and_belongs_to_many :articles | |
default_scope order('categories.name') | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment