﻿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
29904	Not Null CharField Doesn't generate DB constraint on Oracle	Vackar Afzal	nobody	"Given the following model:



{{{
class User(models.Model):
    myField1 = models.CharField(max_length=20)
    myField2 = models.CharField(max_length=20, blank=True)
    myField3 = models.CharField(max_length=20, null=True, blank=True)
}}}

I would expect myField1 and field2 to have a db constraint assigned to ensure that they are not null.
However all columns are nullable upon inspection via 3rd party db tool. 
Is this by design, or a genuine bug?
"	Bug	closed	Migrations	2.0	Normal	invalid	Contraints		Unreviewed	0	0	0	0	0	0
