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