mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
feat: points for issue tracking
This commit is contained in:
@@ -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>")
|
||||
|
||||
Reference in New Issue
Block a user