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

4 lines
111 B
Ruby

class Artist < ActiveRecord::Base
has_many :albums, :order => 'year ASC, id ASC', :dependent => :destroy
end