add doctstings

This commit is contained in:
2025-09-08 11:58:02 +02:00
parent 2fd139de55
commit dd5bccf708
6 changed files with 45 additions and 0 deletions

View File

@@ -3,6 +3,9 @@ from django.contrib.auth.models import User
class Profile(models.Model):
"""
Defines a service user
"""
user = models.OneToOneField(User, on_delete=models.CASCADE)
favorite_city = models.CharField(max_length=64, blank=True)