1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-08 10:22:46 +00:00
Files
seahub/base/models.py

12 lines
270 B
Python
Raw Normal View History

2011-03-19 13:15:02 +08:00
from django.db import models
2012-07-23 22:44:09 +08:00
class UuidObjidMap(models.Model):
2012-07-23 22:44:09 +08:00
"""
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)