﻿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
21854	CharField has default value of u''	burhan.khalid@…	nobody	"{{{
>>> import django
>>> django.VERSION
(1, 6, 1, 'final', 0)
>>> from myfirstapp.models import Product
>>> p = Product()
>>> p
<Product: Product object>
>>> p.save()
>>> p.name
u''
}}}

Django should not save the object because the model definition is:

{{{
class Product(models.Model):
	name = models.CharField('product name', max_length=64)
	url = models.URLField('product page', blank=True)
	category = models.CharField(max_length=64, blank=True)
	description = models.TextField('product description', blank=True)
}}}

I am using `2.7.6`

{{{
$ python
Python 2.7.6 (default, Dec 31 2013, 11:53:45)
[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.2.79)] on darwin
}}}"	Bug	closed	Database layer (models, ORM)	1.6	Normal	invalid			Unreviewed	0	0	0	0	0	0
