fix
This commit is contained in:
parent
839655b163
commit
fcd23ea5af
|
|
@ -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)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue