1
0
Fork 0
beathaven/app/models/artist_genre.rb

7 lines
125 B
Ruby
Raw Normal View History

2012-08-26 23:53:30 +00:00
class ArtistGenre < ActiveRecord::Base
2012-09-17 08:25:38 +00:00
belongs_to :artist
belongs_to :genre
2012-08-26 23:53:30 +00:00
attr_accessible :artist_id, :genre_id
end