feat(itam): Add device model

!10 closes #12
This commit is contained in:
2024-05-23 21:26:50 +09:30
parent ef463b845d
commit 99a559fe6d
20 changed files with 519 additions and 38 deletions

View File

@ -32,7 +32,6 @@ class Manufacturer(TenancyObject, ManufacturerCommonFields, SaveHistory):
'name'
]
name = models.CharField(
blank = False,
max_length = 50,
@ -41,3 +40,8 @@ class Manufacturer(TenancyObject, ManufacturerCommonFields, SaveHistory):
slug = AutoSlugField()
def __str__(self):
return self.name