Hello,
I ran into an issue with a models.URLField because it limits the size of the field to 200 characters. I find this too short to my use case. I have a valid URL to an external website (in academia), and it won’t fit in the Django URLField.
This took me down a rabbit hole and this very good answer on Stack Overflow:
https://stackoverflow.com/a/417184/603819
Summary:
There are other details, such as the domain name not exceeding 255 characters, but that is a different issue.
Why does Django impose such a limit on URLField? Could we increase it to, say, 2000 characters? Or even just remove the limitation on it?
Thanks,
Matthew