Discogs releases parse

This commit is contained in:
Gregory Eremin
2011-09-22 19:40:44 +04:00
parent 7a3444d103
commit e235ad7fc5
11 changed files with 107 additions and 6 deletions
+2
View File
@@ -0,0 +1,2 @@
class Genre < ActiveRecord::Base
end
+2
View File
@@ -0,0 +1,2 @@
class Style < ActiveRecord::Base
end
+1 -1
View File
@@ -1,4 +1,4 @@
class Track < ActiveRecord::Base
belongs_to :album
belongs_to :artist, :through => :track_artists
has_many :artists, :through => :track_artists
end