feat(project_management): save project history

!30 #14
This commit is contained in:
2024-06-18 04:51:53 +09:30
parent a91ae337c4
commit 86fc1448a6
3 changed files with 12 additions and 3 deletions

View File

@ -1,9 +1,11 @@
from django.db import models
from core.mixin.history_save import SaveHistory
from .project_common import ProjectCommonFieldsName
class Project(ProjectCommonFieldsName):
class Project(ProjectCommonFieldsName, SaveHistory):
class Meta: