Oracle has allowed characters over 30 length since 12.2, and Django
supports versions 19c and higher.
I change this behavior through a monkey patch:
{{{
DatabaseOperations.max_name_length = lambda x: 128
}}}
I was wondering if the length could be specified in the config and the
max_name_length function could be changed to use that setting, or default
to 30 if not set?
I would like to contribute the change if possible.
--
Ticket URL: <https://code.djangoproject.com/ticket/33707>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* status: new => closed
* resolution: => duplicate
Comment:
Duplicate of #30684.
--
Ticket URL: <https://code.djangoproject.com/ticket/33707#comment:1>