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

ref: #824 closes #829
This commit is contained in:
2025-06-13 16:22:19 +09:30
parent bf7fa83e39
commit 253ee3822a
2 changed files with 7 additions and 1 deletions

View File

@ -178,6 +178,12 @@ def centurion_model_migrate(sender, **kwargs):
'model_name': 'Service',
'history_model_name': 'ServiceHistory',
'notes_model_name': 'ServiceNotes'
},
{
'app_label': 'project_management',
'model_name': 'Project',
'history_model_name': 'ProjectHistory',
'notes_model_name': 'ProjectNotes'
}
]

View File

@ -94,7 +94,7 @@ A Model link is a reference to an item within the database. Supported model link
| operatingsystemversion| `$operating_system_version-<id>` |
| organization| `$organization-<id>` |
| port| `$port-<id>` |
| project| `$-<id>` |
| project| `$project-<id>` |
| projectmilestone| `$-<id>` |
| projectstate| `$project_state-<id>` |
| projecttask| `$-<id>` |