I have a rails model with the following scopes:
default_scope order('created_at ASC')
scope :published, order('created_at DESC').where(:draft=>false)
Unfortunately, the published scope won't order the entries in descending order.
Am I writing this scope wrong?