29 lines
1021 B
Python
29 lines
1021 B
Python
# Generated by Django 2.2.6 on 2020-06-25 06:02
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('artsurvey', '0012_auto_20200624_1800'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='eRositaMatch',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('exp', models.FloatField(default=0.0)),
|
|
('sep', models.FloatField(default=0.0)),
|
|
('ra', models.FloatField(default=0.0)),
|
|
('dec', models.FloatField(default=0.0)),
|
|
('lkh', models.FloatField(default=0.0)),
|
|
('cts', models.FloatField(default=0.0)),
|
|
('flux', models.FloatField(default=0.0)),
|
|
('source', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to='artsurvey.ArtSurveySource')),
|
|
],
|
|
),
|
|
]
|