feat(access): History + Notes model migrations for Company Model

ref: #855 #801
This commit is contained in:
2025-07-06 20:23:48 +09:30
parent 803d7f3223
commit c54de5c627
4 changed files with 91 additions and 4 deletions

View File

@ -5,6 +5,10 @@ from django.apps import apps
from django.db import models
from django.utils.module_loading import import_string
# Note: Only included so that it can be picked up.
# in future when model referenced, this include statement may be repoved.
from access.models.company_base import Company # pylint: disable=W0611:unused-import
module_path = f'centurion.models.meta'