feat(software_version): name does not need to be unique

!5
This commit is contained in:
2024-05-17 19:41:28 +09:30
parent b1c4e570cf
commit b0e69ee64b
2 changed files with 24 additions and 0 deletions

View File

@ -62,5 +62,11 @@ class SoftwareVersion(SoftwareCommonFields):
on_delete=models.CASCADE,
)
name = models.CharField(
blank = False,
max_length = 50,
unique = False,
)