2011-11-27 00:56:09 +04:00

6 lines
128 B
Ruby

class Playlist < ActiveRecord::Base
belongs_to :user
belongs_to :artist
has_many :playlist_items, dependent: :destroy
end