role description blank=True
This commit is contained in:
@@ -61,7 +61,7 @@ class Role(BaseModel):
|
||||
null=True
|
||||
)
|
||||
role_name = models.CharField(max_length=50, unique=True)
|
||||
description = models.TextField(max_length=500)
|
||||
description = models.TextField(max_length=500, null=True, blank=True)
|
||||
type = models.ForeignKey(
|
||||
auth_models.OrganizationType,
|
||||
on_delete=models.CASCADE,
|
||||
|
||||
Reference in New Issue
Block a user