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:
@@ -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)
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user