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.
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.