mirror of
https://github.com/haiwen/seahub.git
synced 2025-07-10 21:54:33 +00:00
12 lines
270 B
Python
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)
|
|
|
|
|