19 lines
908 B
Python
19 lines
908 B
Python
# Generated by Django 3.2.13 on 2022-06-24 15:26
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('astrobasis', '0076_magnitude_error'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='magnitude',
|
|
name='band',
|
|
field=models.CharField(choices=[('U', 'U'), ('B', 'B'), ('V', 'V'), ('R', 'R'), ('I', 'I'), ('Z', 'Z'), ('Y', 'Y'), ('J', 'J'), ('H', 'H'), ('K', 'K'), ('Ks', 'Ks'), ('Br_gamma', 'Br_gamma'), ('u', 'u'), ('g', 'g'), ('r', 'r'), ('Halpha', 'Halpha'), ('i', 'i'), ('z', 'z'), ('y', 'y'), ('G', 'G'), ('Gbr', 'Gbr'), ('Grp', 'Grp'), ('I1', 'I1'), ('I2', 'I2'), ('I3', 'I3'), ('I4', 'I4'), ('MIPS.24mu', 'MIPS.24mu'), ('MIPS.70mu', 'MIPS.70mu'), ('MIPS.160mu', 'MIPS.160mu'), ('W1', 'W1'), ('W2', 'W2'), ('W3', 'W3'), ('W4', 'W4')], default='W1', max_length=10),
|
|
),
|
|
]
|