7 lines
185 B
Python
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() |