Skip to content

Commit

Permalink
added blank=true to source field
Browse files Browse the repository at this point in the history
  • Loading branch information
bishwaspraveen committed Jan 25, 2024
1 parent cf40e7d commit eed894e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion feedback/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class Feedback(models.Model):
email = models.EmailField()
subject = models.CharField(max_length=400)
comments = models.TextField()
source = models.CharField(max_length=50, default="SDE")
source = models.CharField(max_length=50, default="SDE", blank=True)

class Meta:
verbose_name = "Feedback Response"
Expand Down

0 comments on commit eed894e

Please sign in to comment.