Change delete behaviour for parent build item

- was causing database integrity errors when a parent build existed
This commit is contained in:
Oliver Walters 2020-12-01 10:24:51 +11:00
parent 28a5ee32c4
commit 47d38e1cca
2 changed files with 22 additions and 1 deletions

View File

@ -0,0 +1,20 @@
# Generated by Django 3.0.7 on 2020-11-30 23:23
from django.db import migrations
import django.db.models.deletion
import mptt.fields
class Migration(migrations.Migration):
dependencies = [
('build', '0023_auto_20201110_0911'),
]
operations = [
migrations.AlterField(
model_name='build',
name='parent',
field=mptt.fields.TreeForeignKey(blank=True, help_text='BuildOrder to which this build is allocated', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='children', to='build.Build', verbose_name='Parent Build'),
),
]

View File

@ -83,9 +83,10 @@ class Build(MPTTModel):
help_text=_('Brief description of the build')
)
# TODO - Perhaps delete the build "tree"
parent = TreeForeignKey(
'self',
on_delete=models.DO_NOTHING,
on_delete=models.SET_NULL,
blank=True, null=True,
related_name='children',
verbose_name=_('Parent Build'),