ft_transcendence/django/trancendence/accounts/models.py
2023-10-24 18:42:43 +02:00

7 lines
185 B
Python

from django.db import models
# Create your models here.
class Profile(models.Model):
uuid = models.CharField()
username = models.CharField()
avatar_url = models.CharField()