1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-06 01:12:03 +00:00
Files
seahub/share/models.py

9 lines
285 B
Python
Raw Normal View History

2012-02-11 11:12:54 +08:00
from django.db import models
2012-06-12 10:13:14 +08:00
class AnonymousShare(models.Model):
repo_owner = models.EmailField(max_length=255)
2012-02-11 11:12:54 +08:00
repo_id = models.CharField(max_length=36)
2012-06-12 10:13:14 +08:00
anonymous_email = models.EmailField(max_length=255)
token = models.CharField(max_length=25, unique=True)