Skip to content

Commit

Permalink
Changed CharField to Textfield in models.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tsu-ki committed Dec 1, 2024
1 parent 6ebc5f0 commit a00cdf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ class IP(models.Model):
user = models.CharField(max_length=150, null=True, blank=True)
issuenumber = models.IntegerField(null=True, blank=True)
created = models.DateTimeField(auto_now_add=True)
agent = models.CharField(max_length=255, null=True, blank=True)
agent = models.TextField(null=True, blank=True)
count = models.BigIntegerField(default=1)
path = models.CharField(max_length=255, null=True, blank=True)
method = models.CharField(max_length=10, null=True, blank=True)
Expand Down

0 comments on commit a00cdf9

Please sign in to comment.