diff --git a/backend/chat/models.py b/backend/chat/models.py index 242788f14..5a3d99980 100644 --- a/backend/chat/models.py +++ b/backend/chat/models.py @@ -13,6 +13,7 @@ def __str__(self): class Conversation(models.Model): + summary='hello mawa gi' id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False) title = models.CharField(max_length=100, blank=False, null=False, default="Mock title") created_at = models.DateTimeField(auto_now_add=True)