From 209026ed368c8c4adb81a74e5387d3b49f2bc03a Mon Sep 17 00:00:00 2001 From: Usman Nasir Date: Mon, 11 May 2020 14:28:31 +0500 Subject: [PATCH] bug fix in fixMariaDB --- dns/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dns/models.py b/dns/models.py index c926566db..ad666cff2 100755 --- a/dns/models.py +++ b/dns/models.py @@ -41,7 +41,7 @@ class Comments(models.Model): type = models.CharField(max_length=10) modified_at = models.IntegerField() account = models.CharField(max_length=40) - comment = models.CharField(max_length=64000) + comment = models.TextField() class Meta: db_table = 'comments'