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

19 lines
547 B
Python

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