mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-13 04:36:04 +00:00
9 lines
214 B
Python
9 lines
214 B
Python
from django.db import models
|
|
from django.contrib.auth.models import User
|
|
|
|
|
|
class UserProfile(models.Model):
|
|
user = models.ForeignKey(User, unique=True)
|
|
status = models.CharField(max_length=40, blank=True)
|
|
|