diff --git a/app/core/models/node_storage.py b/app/core/models/node_storage.py index c8ba27c..1ebfd2b 100644 --- a/app/core/models/node_storage.py +++ b/app/core/models/node_storage.py @@ -7,11 +7,11 @@ from app.core.logger import make_log from app.core._config import UPLOADS_DIR, PROJECT_HOST import os from app.core.content.content_id import ContentId -from app.core.models.content.indexation_mixins import NodeStorageIndexationMixin +# from app.core.models.content.indexation_mixins import NodeStorageIndexationMixin from .base import AlchemyBase -class StoredContent(AlchemyBase, NodeStorageIndexationMixin): +class StoredContent(AlchemyBase): __tablename__ = 'node_storage' id = Column(Integer, autoincrement=True, primary_key=True)