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