mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
feat: points for issue tracking
This commit is contained in:
parent
e7af3da115
commit
342d3489b3
@ -41,6 +41,7 @@ class Issue(ProjectBaseModel):
|
||||
estimate_point = models.IntegerField(
|
||||
validators=[MinValueValidator(0), MaxValueValidator(7)], null=True, blank=True
|
||||
)
|
||||
point = models.IntegerField(null=True)
|
||||
name = models.CharField(max_length=255, verbose_name="Issue Name")
|
||||
description = models.JSONField(blank=True, default=dict)
|
||||
description_html = models.TextField(blank=True, default="<p></p>")
|
||||
|
Loading…
Reference in New Issue
Block a user