Merge pull request #817 from makeplane/chore/issue_estimate_points
chore: set default value as null for estimate point
This commit is contained in:
commit
a358260a22
1 changed files with 1 additions and 1 deletions
|
|
@ -39,7 +39,7 @@ class Issue(ProjectBaseModel):
|
|||
related_name="state_issue",
|
||||
)
|
||||
estimate_point = models.IntegerField(
|
||||
default=0, validators=[MinValueValidator(0), MaxValueValidator(7)]
|
||||
validators=[MinValueValidator(0), MaxValueValidator(7)], null=True, blank=True
|
||||
)
|
||||
name = models.CharField(max_length=255, verbose_name="Issue Name")
|
||||
description = models.JSONField(blank=True, default=dict)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue