1
0
Fork 0
oldhaven/app/models/artist.rb

4 lines
155 B
Ruby
Raw Normal View History

2011-06-14 16:05:12 +00:00
class Artist < ActiveRecord::Base
2011-06-29 04:32:28 +00:00
has_many :albums, :order => '(pic_url!="" AND pic_url IS NOT NULL) DESC, year ASC, id ASC', :dependent => :destroy
2011-06-14 16:05:12 +00:00
end