mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
5 lines
159 B
Python
5 lines
159 B
Python
![]() |
from django.db import models
|
||
|
from django.contrib.auth.models import User
|
||
|
|
||
|
class UserProfile(models.Model):
|
||
|
user = models.ForeignKey(User, unique=True)
|