feat(project_management): Add model ProjectMilestone to migrate for history and notes

ref: #833 closes #830
This commit is contained in:
2025-06-14 13:03:00 +09:30
parent ff77aaac13
commit 1af06bbaa6

View File

@ -184,6 +184,12 @@ def centurion_model_migrate(sender, **kwargs):
'model_name': 'Project', 'model_name': 'Project',
'history_model_name': 'ProjectHistory', 'history_model_name': 'ProjectHistory',
'notes_model_name': 'ProjectNotes' 'notes_model_name': 'ProjectNotes'
},
{
'app_label': 'project_management',
'model_name': 'ProjectMilestone',
'history_model_name': 'ProjectMilestoneHistory',
'notes_model_name': 'ProjectMilestoneNotes'
} }
] ]