From fcd23ea5af5d3c624f48e23529b4f25d69b11a36 Mon Sep 17 00:00:00 2001 From: user Date: Fri, 5 Apr 2024 21:09:07 +0300 Subject: [PATCH] fix --- app/core/models/node_storage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)