Merge pull request #1154 from SchrodingersGat/build-delete-fix

Change delete behaviour for parent build item
This commit is contained in:
Oliver 2020-12-01 12:36:24 +11:00 committed by GitHub
commit 9dae7c1566
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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'),