mirror of
https://github.com/xhongc/music-tag-web.git
synced 2026-04-26 03:31:26 +08:00
7 lines
196 B
Python
7 lines
196 B
Python
from django.db import models
|
|
from django.contrib.auth.models import User
|
|
|
|
|
|
class UserProfile(models.Model):
|
|
user = models.OneToOneField(User, related_name="profile", on_delete=models.CASCADE)
|