25 lines
771 B
Python
25 lines
771 B
Python
|
# Generated by Django 3.1.3 on 2022-08-15 06:03
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('konova', '0014_resubmission'),
|
||
|
('compensation', '0007_auto_20220531_1245'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='compensation',
|
||
|
name='resubmission',
|
||
|
field=models.ManyToManyField(blank=True, null=True, related_name='_compensation_resubmission_+', to='konova.Resubmission'),
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='ecoaccount',
|
||
|
name='resubmission',
|
||
|
field=models.ManyToManyField(blank=True, null=True, related_name='_ecoaccount_resubmission_+', to='konova.Resubmission'),
|
||
|
),
|
||
|
]
|