1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-25 14:43:15 +00:00
seahub/profile/models.py

8 lines
218 B
Python
Raw Normal View History

from django.db import models
class Profile(models.Model):
user = models.EmailField(unique=True)
2012-06-21 12:53:13 +00:00
nickname = models.CharField(max_length=64, blank=True)
intro = models.TextField(max_length=256, blank=True)