some changes

This commit is contained in:
2025-08-06 13:32:50 +03:30
parent d9d0537ac9
commit 30dcdb2db6
18 changed files with 251 additions and 12 deletions

View File

@@ -88,6 +88,7 @@ class LiveStock(BaseModel):
(2, 'female')
)
gender = models.IntegerField(choices=gender_type, default=1)
archive = models.BooleanField(default=False)
def __str__(self):
return f'{self.type.name}-{self.species.name}'