refactor(project_management): Rename History models

ref: #765 #759
This commit is contained in:
2025-05-18 03:06:43 +09:30
parent 4b2e55187c
commit 98b392d4a2
22 changed files with 70 additions and 40 deletions

View File

@ -385,12 +385,12 @@ class Project(ProjectCommonFieldsName):
def save_history(self, before: dict, after: dict) -> bool:
from project_management.models.project_history import ProjectHistory
from project_management.models.project_history import ProjectAuditHistory
history = super().save_history(
before = before,
after = after,
history_model = ProjectHistory,
history_model = ProjectAuditHistory,
)