﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
25428	Allow configuring the database's identifier max length in the DATABASES setting	Hugo Tácito	nobody	"Can we please define a MAX_NAME_LENGTH in the DATABASE settings instead of using a fixed number as we can see at the method django.db.backends.postgresql.operations.DatabaseOperations.max_name_length

Example of use:


{{{
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql_psycopg2',
        'NAME': 'test',
        'USER': 'postgres',
        'PASSWORD': '',
        'HOST': '127.0.0.1',
        'PORT': '5432',
        'MAX_NAME_LENGTH': '128'
    }
}
}}}
"	New feature	closed	Core (Other)	1.8	Normal	wontfix			Unreviewed	0	0	0	0	0	0
