mpeltriaux
0bf2051bdf
* adds needed migrations * refactors forms.py (700+ lines) in main konova app * splits into forms/ and forms/modals and single class/topic-files for better maintainability and overview * fixes bug in main konova app migration which could occur if a certain compensation migration did not run before
20 lines
520 B
Python
20 lines
520 B
Python
# Generated by Django 3.1.3 on 2022-08-15 08:30
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('konova', '0014_resubmission'),
|
|
('intervention', '0006_auto_20220815_0803'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='intervention',
|
|
name='resubmissions',
|
|
field=models.ManyToManyField(blank=True, related_name='_intervention_resubmissions_+', to='konova.Resubmission'),
|
|
),
|
|
]
|