Skip to content

Instantly share code, notes, and snippets.

@rachid
Created May 19, 2011 16:57
Show Gist options
  • Save rachid/981222 to your computer and use it in GitHub Desktop.
Save rachid/981222 to your computer and use it in GitHub Desktop.
# in the rails default Model
class Student < ActiveRecord::Base
default_scope :order => 'lastname ASC'
end
#or in an active admin DSL model
ActiveAdmin.register Student do
scope :all, :default => true do |students|
students.order('lastname ASC')
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment