4 lines
87 B
Ruby
4 lines
87 B
Ruby
class Artist < ActiveRecord::Base
|
|
has_many :albums, :order => 'year ASC, id ASC'
|
|
end
|