oldhaven/app/models/artist.rb

4 lines
125 B
Ruby
Raw Normal View History

2011-06-14 20:05:12 +04:00
class Artist < ActiveRecord::Base
2011-06-30 09:29:24 +04:00
has_many :albums, :order => 'has_pic DESC, year ASC, id ASC', :dependent => :destroy
2011-06-14 20:05:12 +04:00
end