﻿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
8463	force_insert doesn't work with inherited models	Nicolas Dietrich	nobody	"The following testcase describes the problem best:

Model:
{{{
from django.db import models

class Parent(models.Model):
    something = models.SlugField()

class Daughter(Parent):
    pass
}}}

Interactive session:

{{{
In [1]: from appname.models import Daughter
In [2]: d = Daughter(something='algo')
In [3]: d.save()
In [4]: d.something='otra'
In [5]: d.save(force_insert=True)
}}}
results in
{{{
IntegrityError: duplicate key value violates unique constraint ""appname_daughter_pkey""
}}}"		closed	Core (Other)	dev		invalid			Unreviewed	0	0	0	0	0	0
