1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-13 04:36:04 +00:00
seahub/profile/models.py

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)