django-database

Getting blank statement in django model charfield with mysql

I just migrated my django application from sqlite3 to mysql 5.1.41. I have a charfield in a model defined like this: class HostData(models.Model): Host = models.CharField(max_length=50, null=True) HostStatus = models.CharField(max_length=200, null=True) Alarm = models.BooleanField() Everything works the same except HostStatus, w...