﻿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
22856	Blank=False not being enforced	fongandrew2	nobody	"It is possible to save a blank value to CharField(blank=False) without Django raising any exception.

{{{
from django.db import models

# Create your models here.
class MyModel(models.Model):
    my_charfield = models.CharField(max_length=32, blank=False)

# This should fail, but it does not
MyModel().save()

}}}"	Bug	closed	Uncategorized	1.7-beta-2	Normal	invalid			Unreviewed	0	0	0	0	0	0
