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

12 lines
270 B
Python

from django.db import models
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)