feat(project_management): Add field is_deleted to projects
preparation for the purge permission. ref: #301 closes #293
This commit is contained in:
@ -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):
|
||||
|
||||
|
Reference in New Issue
Block a user