19 lines
591 B
Python
19 lines
591 B
Python
# Generated by Django 5.2.7 on 2025-12-08 12:41
|
||
|
||
from django.db import migrations, models
|
||
|
||
|
||
class Migration(migrations.Migration):
|
||
|
||
dependencies = [
|
||
('mainapp', '0019_add_coords_to_source_request'),
|
||
]
|
||
|
||
operations = [
|
||
migrations.AddField(
|
||
model_name='satellite',
|
||
name='location_place',
|
||
field=models.CharField(choices=[('kr', 'КР'), ('dv', 'ДВ')], default='kr', help_text='К какому комплексу принадлежит спутник', max_length=30, null=True, verbose_name='Комплекс'),
|
||
),
|
||
]
|