init profiles

This commit is contained in:
2023-10-24 18:42:43 +02:00
parent 83c8aee895
commit fb5ff0dad7
11 changed files with 16 additions and 3 deletions

View File

@ -1,3 +1,7 @@
from django.db import models
# Create your models here.
# Create your models here.
class Profile(models.Model):
uuid = models.CharField()
username = models.CharField()
avatar_url = models.CharField()