21 lines
518 B
Python
Executable File
21 lines
518 B
Python
Executable File
from django.db import models
|
|
|
|
from portfolio.account.models import Account, Guest
|
|
from portfolio.album.models import Track
|
|
|
|
|
|
class AbstractComment(models.Model):
|
|
text = models.CharField(max_length=255)
|
|
track = models.ForeignKey(Track, on_delete=models.CASCADE)
|
|
|
|
class Meta:
|
|
abstract = True
|
|
|
|
|
|
class UserComment(AbstractComment):
|
|
user = models.ForeignKey(Account, on_delete=models.CASCADE)
|
|
|
|
|
|
class GuestComment(AbstractComment):
|
|
guest = models.ForeignKey(Guest, on_delete=models.CASCADE)
|