mpeltriaux
9013508df1
* adds migration support for detail fields on CompensationState and CompensationAction
36 lines
1.7 KiB
Python
36 lines
1.7 KiB
Python
# Generated by Django 3.1.3 on 2022-02-02 07:46
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('codelist', '0001_initial'),
|
|
('compensation', '0002_auto_20220114_0936'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='compensationaction',
|
|
name='action_type_details',
|
|
field=models.ManyToManyField(blank=True, limit_choices_to={'code_lists__in': [1035], 'is_archived': False, 'is_selectable': True}, related_name='_compensationaction_action_type_details_+', to='codelist.KonovaCode'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='compensationstate',
|
|
name='biotope_type_details',
|
|
field=models.ManyToManyField(blank=True, limit_choices_to={'code_lists__in': [975], 'is_archived': False, 'is_selectable': True}, related_name='_compensationstate_biotope_type_details_+', to='codelist.KonovaCode'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='compensationaction',
|
|
name='action_type',
|
|
field=models.ForeignKey(blank=True, limit_choices_to={'code_lists__in': [1026], 'is_archived': False, 'is_selectable': True}, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='codelist.konovacode'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='compensationstate',
|
|
name='biotope_type',
|
|
field=models.ForeignKey(blank=True, limit_choices_to={'code_lists__in': [974], 'is_archived': False, 'is_selectable': True}, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='codelist.konovacode'),
|
|
),
|
|
]
|