7 lines
182 B
Python
7 lines
182 B
Python
from django.db import models
|
|
from django.contrib.auth.models import AbstractUser
|
|
|
|
|
|
class User(AbstractUser):
|
|
avatar = models.ImageField()
|
|
note = models.TextField(blank=True)
|