chore: Add premeta notes and history models to init so they can be migrated

ref: #788 #759 #768
This commit is contained in:
2025-06-05 16:10:28 +09:30
parent 8a390b9caf
commit 728db3f740
10 changed files with 90 additions and 3 deletions

View File

@ -1,5 +1,15 @@
from .audit import CenturionAudit # pylint: disable=W0611:unused-import
from .history import History # pylint: disable=W0611:unused-import
from .model_history import ModelHistory # pylint: disable=W0611:unused-import
from . import ticket_comment_action # pylint: disable=W0611:unused-import
from . import ticket_comment_base # pylint: disable=W0611:unused-import
from . import ticket_comment_solution # pylint: disable=W0611:unused-import
from .manufacturer_history import ManufacturerHistory # pylint: disable=W0611:unused-import
from .ticket.ticket_category_history import TicketCategoryHistory # pylint: disable=W0611:unused-import
from .ticket.ticket_comment_category_history import TicketCommentCategoryHistory # pylint: disable=W0611:unused-import
from .manufacturer_notes import ManufacturerNotes # pylint: disable=W0611:unused-import
from .model_notes import ModelNotes # pylint: disable=W0611:unused-import
from .notes import Notes # pylint: disable=W0611:unused-import
from .ticket.ticket_category_notes import TicketCategoryNotes # pylint: disable=W0611:unused-import
from .ticket.ticket_comment_category_notes import TicketCommentCategoryNotes # pylint: disable=W0611:unused-import