diff options
Diffstat (limited to 'app/posts/models.py')
-rw-r--r-- | app/posts/models.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/posts/models.py b/app/posts/models.py index d0e8c0b..25dfe10 100644 --- a/app/posts/models.py +++ b/app/posts/models.py @@ -6,6 +6,7 @@ from django.contrib.gis.db import models from django.db.models.signals import post_save from django.contrib.contenttypes.fields import GenericRelation, GenericForeignKey from django.contrib.contenttypes.models import ContentType +from django.contrib.sites.models import Site from django.urls import reverse from django.utils.functional import cached_property from django.apps import apps @@ -47,6 +48,7 @@ class PostType(models.IntegerChoices): class Post(models.Model): old_id = models.IntegerField(blank=True, null=True) + site = models.ForeignKey(Site, on_delete=models.CASCADE) title = models.CharField(max_length=200) short_title = models.CharField(max_length=200, blank=True, null=True) subtitle = models.CharField(max_length=200, blank=True) |