This commit is contained in:
ITQ
2024-04-02 21:40:19 +03:00
parent 8d6323a364
commit d0523ba3a9
8 changed files with 30 additions and 71 deletions
+1
View File
@@ -9,6 +9,7 @@ class User(BaseModel):
email = models.EmailField()
birth_date = models.DateTimeField()
bio = models.TextField()
skills = models.JSONField(default=dict)
def __str__(self):
return f"{self.first_name} {self.last_name}"