﻿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
24249	Improve forbidding field shadowing in model multi-inheritance	aron45	nobody	"This is a ticket to improve #17673 for multi inheritance of grand father
{{{
class GrandFather(models.Model):
    column1 = models.IntegerField()


class Father(GrandFather):
    column2 = models.IntegerField()


class Child(Father):
    column1 = models.IntegerField()  # this should fail, but it does pass.
}}}"	Bug	closed	Database layer (models, ORM)	1.7	Normal	fixed	validation		Accepted	1	0	0	0	0	0
