ft_transcendence/django/trancendence/accounts/models.py

7 lines
185 B
Python
Raw Normal View History

2023-10-24 07:36:42 -04:00
from django.db import models
2023-10-24 12:42:43 -04:00
# Create your models here.
class Profile(models.Model):
uuid = models.CharField()
username = models.CharField()
avatar_url = models.CharField()