mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-25 10:11:24 +00:00
9 lines
263 B
Python
9 lines
263 B
Python
from django.db import models
|
|
from django.contrib.auth.models import User
|
|
|
|
class Profile(models.Model):
|
|
user = models.EmailField(unique=True)
|
|
nickname = models.CharField(max_length=256, blank=True)
|
|
intro = models.TextField(max_length=256, blank=True)
|
|
|