19 lines
404 B
Python
19 lines
404 B
Python
from django.db import models
|
|
|
|
from account.models import Account, Guest
|
|
|
|
|
|
class AbstractComment(models.Model):
|
|
text = models.CharField(max_length=255)
|
|
|
|
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)
|