X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/9beb8b9bcc4902c8100f4ecf28d4e025e99a4195..HEAD:/comment/models.py diff --git a/comment/models.py b/comment/models.py index a5c3000..4cbabfa 100644 --- a/comment/models.py +++ b/comment/models.py @@ -7,6 +7,7 @@ class CommentDocument(models.Model): slug = models.SlugField(max_length = 255, unique = True) comment_id = models.CharField(max_length = 255, unique = True) order = models.IntegerField() + language_code = models.CharField(max_length = 2, default = 'pl') class Meta: ordering = ['order']