1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-15 05:33:38 +00:00
seahub/profile/models.py

9 lines
214 B
Python
Raw Normal View History

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)