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

ref: #833 closes #831
This commit is contained in:
2025-06-14 13:42:57 +09:30
parent 461b3f4933
commit 3e6570045c

View File

@ -190,6 +190,12 @@ def centurion_model_migrate(sender, **kwargs):
'model_name': 'ProjectMilestone',
'history_model_name': 'ProjectMilestoneHistory',
'notes_model_name': 'ProjectMilestoneNotes'
},
{
'app_label': 'project_management',
'model_name': 'ProjectState',
'history_model_name': 'ProjectStateHistory',
'notes_model_name': 'ProjectStateNotes'
}
]