What is the max size of 'max_length' in Django?
Use TextField
instead
infowindow = models.TextField()
That depends on the database backend. The Django DB Docs will tell you, that max_length=255
is guaranteed to work always.
If you need something of the amount you've specified in your question, I'd suggest to use a TextField.