1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-07-10 21:54:33 +00:00
seahub/base/models.py

12 lines
270 B
Python
Raw Normal View History

2011-03-19 05:15:02 +00:00
from django.db import models
2012-07-23 14:44:09 +00:00
class UuidOjbidMap(models.Model):
"""
Model used for store crocdoc uuid and file object id mapping.
"""
uuid = models.CharField(max_length=40)
obj_id = models.CharField(max_length=40, unique=True)