1
0
Fork 0
oldhaven/app/models/beathaven/playlist.rb

6 lines
128 B
Ruby
Raw Normal View History

2011-06-22 00:05:12 +00:00
class Playlist < ActiveRecord::Base
belongs_to :user
2011-11-26 15:03:33 +00:00
belongs_to :artist
2011-11-26 20:56:09 +00:00
has_many :playlist_items, dependent: :destroy
2011-06-22 00:05:12 +00:00
end