﻿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
18452	Spaces in model field definition params cause sqlite errors	Scot Hacker	nobody	"With this class definition:

class MyModel(models.Model):
    title = models.CharField(blank=True, null=True, max_length=60)

run syncdb against sqlite. The title column will end up in sqlite defined as a required field (it shouldn't be).  Remove the sqlite file, and change the model slightly:

class MyModel(models.Model):
    title = models.CharField(blank=True,null=True,max_length=60)

(remove the spaces between the field options). syncdb again and the column now correctly is non-required. 

The presence of the space(s) between field options seems to be significant."	Uncategorized	closed	Uncategorized	1.4	Normal	invalid			Unreviewed	0	0	0	0	0	0
