mirror of
https://github.com/viq/NewsBlur.git
synced 2025-04-13 09:38:09 +00:00
5 lines
No EOL
159 B
Python
5 lines
No EOL
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) |