1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-07 01:41:39 +00:00

Add document preview feature

This commit is contained in:
xiez
2012-07-23 22:44:09 +08:00
parent 0306ff75b7
commit 4b2558a6c5
6 changed files with 230 additions and 9 deletions

View File

@@ -1,3 +1,11 @@
from django.db import models
# Create your models here.
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)