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

6 lines
131 B
Ruby
Raw Normal View History

2011-06-14 16:05:12 +00:00
class Track < ActiveRecord::Base
2011-06-14 20:01:42 +00:00
belongs_to :album
2011-09-26 00:05:46 +00:00
has_many :track_artists
2011-09-22 15:40:44 +00:00
has_many :artists, :through => :track_artists
2011-06-14 16:05:12 +00:00
end