feat(project_management): Add field is_deleted to projects

preparation for the purge permission.

ref: #301 closes #293
This commit is contained in:
2024-09-18 12:29:59 +09:30
parent b2f20766de
commit d6f475a009
5 changed files with 62 additions and 0 deletions

View File

@ -169,6 +169,14 @@ class Project(ProjectCommonFieldsName):
blank = True,
)
is_deleted = models.BooleanField(
blank = False,
default = False,
help_text = 'Is this project considered deleted',
null = False,
verbose_name = 'Deleted',
)
def __str__(self):