1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-01 15:09:14 +00:00
Files
seahub/profile/models.py

9 lines
221 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)
2011-05-08 15:19:58 +08:00
ccnet_user_id = models.CharField(max_length=40, blank=True)