﻿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
1819	[patch] Inspectdb generates CharFields with null	remco@…	Adrian Holovaty	"Inspectdb generates CharFields with null=true for mysql tables that have attributes which allow Null values. This is not Django convention:

""null

If True, Django will store empty values as NULL in the database. Default is False.

Note that empty string values will always get stored as empty strings, not as NULL -- so use null=True for non-string fields such as integers, booleans and dates.

Avoid using null on string-based fields such as CharField and TextField unless you have an excellent reason. If a string-based field has null=True, that means it has two possible values for ""no data"": NULL, and the empty string. In most cases, it's redundant to have two possible values for ""no data;"" Django convention is to use the empty string, not NULL.""
    -- source: http://www.djangoproject.com/documentation/model_api/"		closed	Database layer (models, ORM)	dev	minor	fixed		mir@…	Unreviewed	1	0	0	0	0	0
