This commit is contained in:
user 2024-04-05 21:09:07 +03:00
parent 839655b163
commit fcd23ea5af
1 changed files with 2 additions and 2 deletions

View File

@ -7,11 +7,11 @@ from app.core.logger import make_log
from app.core._config import UPLOADS_DIR, PROJECT_HOST from app.core._config import UPLOADS_DIR, PROJECT_HOST
import os import os
from app.core.content.content_id import ContentId 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 from .base import AlchemyBase
class StoredContent(AlchemyBase, NodeStorageIndexationMixin): class StoredContent(AlchemyBase):
__tablename__ = 'node_storage' __tablename__ = 'node_storage'
id = Column(Integer, autoincrement=True, primary_key=True) id = Column(Integer, autoincrement=True, primary_key=True)