oldhaven/app/models/artist.rb
2011-06-15 00:01:42 +04:00

4 lines
116 B
Ruby

class Artist < ActiveRecord::Base
has_many :albums, :conditions => "status = 1", :order => 'year ASC, id ASC'
end