12 lines
279 B
Python
Executable File
12 lines
279 B
Python
Executable File
from django.db import models
|
|
|
|
from portfolio.album.models import Track
|
|
from portfolio.account.models import Account
|
|
|
|
|
|
class Playlist(models.Model):
|
|
title = models.CharField(max_length=255)
|
|
user = models.ManyToManyField(Account)
|
|
track = models.ManyToManyField(Track)
|
|
|