5 lines
106 B
Ruby
5 lines
106 B
Ruby
class Track < ActiveRecord::Base
|
|
belongs_to :album
|
|
belongs_to :artist, :through => :track_artists
|
|
end
|