You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
751 B
25 lines
751 B
# Generated by Django 3.2 on 2023-04-02 18:29
|
|
import django.db.models.deletion
|
|
from django.db import migrations
|
|
from django.db import models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('service', '0020_auto_20230327_2305'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='placementpoint',
|
|
name='area',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='service.rayon'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='placementpoint',
|
|
name='district',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='service.ao'),
|
|
),
|
|
]
|