1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-10-22 03:16:34 +00:00
Files
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 20:53:13 +08:00
nickname = models.CharField(max_length=64, blank=True)
intro = models.TextField(max_length=256, blank=True)