mirror of
https://github.com/haiwen/seahub.git
synced 2025-06-24 14:12:03 +00:00
8 lines
218 B
Python
8 lines
218 B
Python
from django.db import models
|
|
|
|
class Profile(models.Model):
|
|
user = models.EmailField(unique=True)
|
|
nickname = models.CharField(max_length=64, blank=True)
|
|
intro = models.TextField(max_length=256, blank=True)
|
|
|