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

7 lines
272 B
Ruby
Raw Normal View History

2011-06-14 16:05:12 +00:00
class Artist < ActiveRecord::Base
2011-06-30 05:29:24 +00:00
has_many :albums, :order => 'has_pic DESC, year ASC, id ASC', :dependent => :destroy
2011-09-20 20:30:42 +00:00
has_many :artist_links, :dependent => :destroy
2011-09-21 23:20:41 +00:00
has_many :artist_aliases, :dependent => :destroy
has_many :tracks, :through => :track_artists
2011-06-14 16:05:12 +00:00
end