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

19 lines
549 B
Python

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