Skip to content

Commit

Permalink
Update Max character count on fields ISSUE #495 Pull Request - Owen
Browse files Browse the repository at this point in the history
  • Loading branch information
owen2608 committed Nov 5, 2023
1 parent aeb8ef2 commit 1b864ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hknweb/academics/models/course_surveys/rating.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class Rating(AcademicEntity):
)

# value attributes
question_text = models.TextField(max_length=500)
question_text = models.TextField(max_length=2000)
inverted = models.BooleanField(default=False)
range_max = models.IntegerField(default=7)
rating_value = models.FloatField()

0 comments on commit 1b864ec

Please sign in to comment.