6 lines
131 B
Ruby
6 lines
131 B
Ruby
class Track < ActiveRecord::Base
|
|
belongs_to :album
|
|
has_many :track_artists
|
|
has_many :artists, :through => :track_artists
|
|
end
|