29 lines
916 B
Python
29 lines
916 B
Python
# Generated by Django 3.0.8 on 2021-04-30 07:36
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('artsurvey', '0094_auto_20210430_1033'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='artsurveyparams',
|
|
name='circle_dec',
|
|
field=models.FloatField(blank=True, default=0.0, help_text='Selection circle Dec', null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='artsurveyparams',
|
|
name='circle_ra',
|
|
field=models.FloatField(blank=True, default=0.0, help_text='Selection circle RA', null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='artsurveyparams',
|
|
name='circle_rmax_deg',
|
|
field=models.FloatField(blank=True, default=0.0, help_text='Selection circle Rmax in degrees', null=True),
|
|
),
|
|
]
|