add is_archive field on project

This commit is contained in:
behruz-dev
2025-08-07 15:09:26 +05:00
parent e018be4447
commit ff493dc03d
4 changed files with 37 additions and 2 deletions

View File

@@ -81,6 +81,7 @@ class Project(BaseModel):
currency = models.CharField(choices=[('usd', 'usd'),('uzs','uzs')], max_length=3, default='uzs')
benifit_plan = models.PositiveBigIntegerField(null=True)
status = models.CharField(max_length=20, choices=STATUS, default='PLANNED')
is_archive = models.BooleanField(default=False)
def __str__(self):
return self.name