4 lines
155 B
Ruby
4 lines
155 B
Ruby
class Artist < ActiveRecord::Base
|
|
has_many :albums, :order => '(pic_url!="" AND pic_url IS NOT NULL) DESC, year ASC, id ASC', :dependent => :destroy
|
|
end
|