1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-04 00:30:57 +00:00
seahub/share/models.py
2012-06-12 10:15:47 +08:00

9 lines
285 B
Python

from django.db import models
class AnonymousShare(models.Model):
repo_owner = models.EmailField(max_length=255)
repo_id = models.CharField(max_length=36)
anonymous_email = models.EmailField(max_length=255)
token = models.CharField(max_length=25, unique=True)