Bastien Sevajol 9 년 전
부모
커밋
927937af85
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tracim/tracim/model/data.py

+ 1 - 1
tracim/tracim/model/data.py 파일 보기

@@ -519,7 +519,7 @@ class ContentRevisionRO(DeclarativeBase):
519 519
     """ List of column copied when make a new revision from another """
520 520
     _cloned_columns = (
521 521
         'content_id', 'created', 'description', 'file_content', 'file_mimetype', 'file_name', 'is_archived',
522
-        'is_deleted', 'label', 'node', 'owner' 'owner_id', 'parent', 'parent_id', 'properties', 'revision_type',
522
+        'is_deleted', 'label', 'node', 'owner', 'owner_id', 'parent', 'parent_id', 'properties', 'revision_type',
523 523
         'status', 'type', 'updated', 'workspace', 'workspace_id',
524 524
     )
525 525