Skip to content

Commit

Permalink
Increase max characters
Browse files Browse the repository at this point in the history
  • Loading branch information
VGR6479 committed Apr 25, 2024
1 parent 07b5523 commit 919f5d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gerobug_dashboard/dashboards/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ class BugReport(models.Model):
report_datetime = models.DateTimeField()
hunter_email = models.EmailField()
report_reviewer = models.CharField(max_length=25, verbose_name="Report Reviewer")
report_title = models.CharField(max_length=100, default='NO TITLE')
report_endpoint = models.CharField(max_length=100, default='NO ENDPOINT')
report_title = models.CharField(max_length=150, default='NO TITLE')
report_endpoint = models.CharField(max_length=150, default='NO ENDPOINT')
report_attack = models.CharField(max_length=100, default='NO ATTACK TYPE')
report_summary = models.TextField()
report_severity = models.FloatField(default=0, verbose_name="Report Severity", validators=[MinValueValidator(0.0), MaxValueValidator(10.0)])
Expand Down

0 comments on commit 919f5d9

Please sign in to comment.