bug fix in fixMariaDB

This commit is contained in:
Usman Nasir 2020-05-11 14:48:37 +05:00
parent 209026ed36
commit 1fbc276709
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ class Records(models.Model):
domain_id = models.IntegerField(blank=True, null=True)
name = models.CharField(max_length=255, blank=True, null=True)
type = models.CharField(max_length=10, blank=True, null=True)
content = models.CharField(max_length=64000, blank=True, null=True)
content = models.CharField(max_length=1000, blank=True, null=True)
ttl = models.IntegerField(blank=True, null=True)
prio = models.IntegerField(blank=True, null=True)
change_date = models.IntegerField(blank=True, null=True)