24 lines
697 B
Python
24 lines
697 B
Python
# Generated by Django 3.0.8 on 2021-07-06 07:10
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('artsurvey', '0125_remove_artsurveyparams_ecl_lat_min'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='artsurveyparams',
|
|
name='ecl_lat_max',
|
|
field=models.FloatField(blank=True, default=None, help_text='Ecliptic latitude max', null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='artsurveyparams',
|
|
name='ecl_lat_min',
|
|
field=models.FloatField(blank=True, default=None, help_text='Ecliptic latitude min', null=True),
|
|
),
|
|
]
|