oldhaven/app/models/artist.rb

4 lines
87 B
Ruby
Raw Normal View History

2011-06-14 20:05:12 +04:00
class Artist < ActiveRecord::Base
has_many :albums, :order => 'year ASC, id ASC'
2011-06-14 20:05:12 +04:00
end