srg/artsurvey/migrations/0207_alter_artsurveyparams_marshall.py
2024-04-26 12:43:00 +03:00

19 lines
565 B
Python

# Generated by Django 3.2.13 on 2023-12-04 10:51
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('artsurvey', '0206_alter_artsurveyparams_marshall'),
]
operations = [
migrations.AlterField(
model_name='artsurveyparams',
name='marshall',
field=models.CharField(blank=True, choices=[('', 'None'), ('MSFC_FILT', 'NEP filter'), ('MSFC_EXCL', 'NEP exclude')], default=None, help_text='MSFC sources in NEP', max_length=10, null=True),
),
]