This is what the online docs say about URLfield: http://www.djangoproject.com/documentation/model-api/#urlfield " A field for a URL. If the verify_exists option is True (default), the URL given will be checked for existence (i.e., the URL actually loads and doesn't give a 404 response). The admin represents this as an <input type="text"> (a single-line input). URLField takes an optional argument, max_length, the maximum length (in characters) of the field. The maximum length is enforced at the database level and in Django's validation. If you don't specify max_length, a default of 200 is used. "
What is a reasonable limit? 500 characters? I've seen 5 times longer... How does having a large limit affect my database? Specifically, MySQL? Will the models be larger on disk? Thanks, Ivan --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---