﻿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
13057	Missing validation of child models	Vlastimil Zíma	nobody	"In Django1.1 validation of models does not report when child model has declared field with same name as one to one field that links parent model and child model.

For example:
{{{
#!python
class Parent(models.Model)
  pass

class Child(Parent)
  child = models.CharField()
}}}
raises !ValueError when I want to set string value for field 'child', because
{{{
#!python
Parent.child == Child.parent.child == Child.child #OneToOneField(Child) instead CharField which is replaced
}}}"		closed	Database layer (models, ORM)	1.1		duplicate			Accepted	0	0	0	0	0	0
