6 lines
128 B
Ruby
Raw Normal View History

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