chore: rename workspace company size to organization size (#1463)

* chore: rename workspace company size to organization size

* chore: make workspace organization size as required
This commit is contained in:
pablohashescobar 2023-07-06 11:58:47 +05:30 committed by GitHub
parent 2f8a1dbe20
commit 8443dfc9dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 61 additions and 1 deletions

View file

@ -23,7 +23,7 @@ class Workspace(BaseModel):
related_name="owner_workspace",
)
slug = models.SlugField(max_length=48, db_index=True, unique=True)
company_size = models.PositiveIntegerField(default=10)
organization_size = models.CharField(max_length=20)
def __str__(self):
"""Return name of the Workspace"""