25 lines
757 B
Python
25 lines
757 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'),
|
||
|
('compensation', '0009_auto_20220815_0803'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='compensation',
|
||
|
name='resubmissions',
|
||
|
field=models.ManyToManyField(blank=True, related_name='_compensation_resubmissions_+', to='konova.Resubmission'),
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='ecoaccount',
|
||
|
name='resubmissions',
|
||
|
field=models.ManyToManyField(blank=True, related_name='_ecoaccount_resubmissions_+', to='konova.Resubmission'),
|
||
|
),
|
||
|
]
|