Ticket #4689: django-dummy-get_max_name_length.patch

File django-dummy-get_max_name_length.patch, 380 bytes (added by Forest Bond <forest@…>, 17 years ago)

Patch that fixes bug

  • django/db/backends/dummy/base.py

     
    1515def ignore(*args, **kwargs):
    1616    pass
    1717
     18def get_max_name_length(*args, **kwargs):
     19    return None
     20
    1821class DatabaseError(Exception):
    1922    pass
    2023
Back to Top