2011-09-26 04:05:46 +04:00

6 lines
131 B
Ruby

class Track < ActiveRecord::Base
belongs_to :album
has_many :track_artists
has_many :artists, :through => :track_artists
end