Skip to content

Instantly share code, notes, and snippets.

@barnes7td
Created January 24, 2016 05:40
Show Gist options
  • Save barnes7td/9ceebce9f8d5d443a0c3 to your computer and use it in GitHub Desktop.
Save barnes7td/9ceebce9f8d5d443a0c3 to your computer and use it in GitHub Desktop.

On your assignment:

Because you have a default_scope the other scopes that you created will all be affected by it. Therefore in order to get the right order in your other scopes and ignore the default scope you need to use reorder

default_scope { order('created_at DESC') }
scope :ordered_by_title, -> { reorder('title ASC')}
scope :ordered_by_reverse_created_at, -> { reorder('created_at ASC') }

Also, check out the unscoped method for removing the default_scope in any situation.

http://apidock.com/rails/ActiveRecord/Base/unscoped/class

http://apidock.com/rails/ActiveRecord/QueryMethods/reorder

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment