1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-04 16:49:40 +00:00
seahub/share/models.py

9 lines
285 B
Python
Raw Normal View History

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