more apps
This commit is contained in:
49
astrobasis/migrations/0001_initial.py
Normal file
49
astrobasis/migrations/0001_initial.py
Normal file
@@ -0,0 +1,49 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-21 15:05
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='GaiaSourceFile',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('filename', models.CharField(blank=True, default='', max_length=80)),
|
||||
('status', models.CharField(default='empty', max_length=7)),
|
||||
('nrows', models.IntegerField(default=0)),
|
||||
],
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='GAIADR2',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('healpix', models.BigIntegerField(db_index=True, default=0)),
|
||||
('solution_id', models.CharField(blank=True, default='', max_length=19)),
|
||||
('name', models.CharField(blank=True, default='', max_length=30)),
|
||||
('source_id', models.CharField(blank=True, default='', max_length=19)),
|
||||
('ref_epoch', models.FloatField(default=0.0)),
|
||||
('ra', models.FloatField(default=0.0)),
|
||||
('ra_error', models.FloatField(default=0.0)),
|
||||
('dec', models.FloatField(default=0.0)),
|
||||
('dec_error', models.FloatField(default=0.0)),
|
||||
('parallax', models.FloatField(default=0.0)),
|
||||
('parallax_error', models.FloatField(default=0.0)),
|
||||
('pmra', models.FloatField(default=0.0)),
|
||||
('pmra_error', models.FloatField(default=0.0)),
|
||||
('pmdec', models.FloatField(default=0.0)),
|
||||
('pmdec_error', models.FloatField(default=0.0)),
|
||||
('phot_g_mean_mag', models.FloatField(default=0.0)),
|
||||
('phot_bp_mean_mag', models.FloatField(default=0.0)),
|
||||
('phot_rp_mean_mag', models.FloatField(default=0.0)),
|
||||
('filename', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='astrobasis.GaiaSourceFile')),
|
||||
],
|
||||
),
|
||||
]
|
35
astrobasis/migrations/0002_ztfalert.py
Normal file
35
astrobasis/migrations/0002_ztfalert.py
Normal file
@@ -0,0 +1,35 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-28 18:01
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='ZTFAlert',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('objectId', models.CharField(blank=True, default='', max_length=12)),
|
||||
('fid', models.IntegerField(db_index=True, default=0)),
|
||||
('lco_id', models.BigIntegerField(db_index=True, default=0)),
|
||||
('healpix', models.BigIntegerField(db_index=True, default=0)),
|
||||
('ra', models.FloatField(default=0.0)),
|
||||
('dec', models.FloatField(default=0.0)),
|
||||
('programid', models.IntegerField(db_index=True, default=0)),
|
||||
('magpsf', models.FloatField(default=0.0)),
|
||||
('sigmapsf', models.FloatField(default=0.0)),
|
||||
('magap', models.FloatField(default=0.0)),
|
||||
('sigmagap', models.FloatField(default=0.0)),
|
||||
('wall_time', models.DateTimeField(blank=True)),
|
||||
('diffmaglim', models.FloatField(default=0.0)),
|
||||
('deltamagref', models.FloatField(default=0.0)),
|
||||
('deltamaglatest', models.FloatField(default=0.0)),
|
||||
('rb', models.FloatField(default=0.0)),
|
||||
],
|
||||
),
|
||||
]
|
17
astrobasis/migrations/0003_remove_ztfalert_wall_time.py
Normal file
17
astrobasis/migrations/0003_remove_ztfalert_wall_time.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-28 18:31
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0002_ztfalert'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='ztfalert',
|
||||
name='wall_time',
|
||||
),
|
||||
]
|
18
astrobasis/migrations/0004_ztfalert_wall_time.py
Normal file
18
astrobasis/migrations/0004_ztfalert_wall_time.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-28 18:32
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0003_remove_ztfalert_wall_time'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='ztfalert',
|
||||
name='wall_time',
|
||||
field=models.CharField(blank=True, default='', max_length=29),
|
||||
),
|
||||
]
|
23
astrobasis/migrations/0005_auto_20200128_2138.py
Normal file
23
astrobasis/migrations/0005_auto_20200128_2138.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-28 18:38
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0004_ztfalert_wall_time'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='ztfalert',
|
||||
name='deltamaglatest',
|
||||
field=models.FloatField(default=0.0, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='ztfalert',
|
||||
name='deltamagref',
|
||||
field=models.FloatField(default=0.0, null=True),
|
||||
),
|
||||
]
|
16
astrobasis/migrations/0006_delete_ztfalert.py
Normal file
16
astrobasis/migrations/0006_delete_ztfalert.py
Normal file
@@ -0,0 +1,16 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-28 18:42
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0005_auto_20200128_2138'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.DeleteModel(
|
||||
name='ZTFAlert',
|
||||
),
|
||||
]
|
36
astrobasis/migrations/0007_ztfalert.py
Normal file
36
astrobasis/migrations/0007_ztfalert.py
Normal file
@@ -0,0 +1,36 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-28 18:42
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0006_delete_ztfalert'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='ZTFAlert',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('objectId', models.CharField(blank=True, default='', max_length=12)),
|
||||
('fid', models.IntegerField(db_index=True, default=0)),
|
||||
('lco_id', models.BigIntegerField(db_index=True, default=0)),
|
||||
('healpix', models.BigIntegerField(db_index=True, default=0)),
|
||||
('ra', models.FloatField(default=0.0)),
|
||||
('dec', models.FloatField(default=0.0)),
|
||||
('programid', models.IntegerField(db_index=True, default=0)),
|
||||
('magpsf', models.FloatField(default=0.0)),
|
||||
('sigmapsf', models.FloatField(default=0.0)),
|
||||
('magap', models.FloatField(default=0.0)),
|
||||
('sigmagap', models.FloatField(default=0.0)),
|
||||
('wall_time', models.CharField(blank=True, default='', max_length=29)),
|
||||
('diffmaglim', models.FloatField(default=0.0)),
|
||||
('deltamagref', models.FloatField(default=0.0, null=True)),
|
||||
('deltamaglatest', models.FloatField(default=0.0, null=True)),
|
||||
('rb', models.FloatField(default=0.0)),
|
||||
('created', models.DateTimeField(auto_now_add=True)),
|
||||
],
|
||||
),
|
||||
]
|
18
astrobasis/migrations/0008_ztfalert_healpix_plate.py
Normal file
18
astrobasis/migrations/0008_ztfalert_healpix_plate.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-29 07:32
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0007_ztfalert'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='ztfalert',
|
||||
name='healpix_plate',
|
||||
field=models.IntegerField(default=0),
|
||||
),
|
||||
]
|
19
astrobasis/migrations/0009_ztfalert_survey.py
Normal file
19
astrobasis/migrations/0009_ztfalert_survey.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-29 07:49
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('monthplan', '0002_auto_20191209_2233'),
|
||||
('astrobasis', '0008_ztfalert_healpix_plate'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='ztfalert',
|
||||
name='survey',
|
||||
field=models.ManyToManyField(to='monthplan.Survey'),
|
||||
),
|
||||
]
|
33
astrobasis/migrations/0010_auto_20200129_1339.py
Normal file
33
astrobasis/migrations/0010_auto_20200129_1339.py
Normal file
@@ -0,0 +1,33 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-29 10:39
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0009_ztfalert_survey'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='ztfalert',
|
||||
name='elong',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='ztfalert',
|
||||
name='fwhm',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='ztfalert',
|
||||
name='magdiff',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='ztfalert',
|
||||
name='nbad',
|
||||
field=models.IntegerField(default=0),
|
||||
),
|
||||
]
|
17
astrobasis/migrations/0011_remove_ztfalert_wall_time.py
Normal file
17
astrobasis/migrations/0011_remove_ztfalert_wall_time.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-29 12:49
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0010_auto_20200129_1339'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='ztfalert',
|
||||
name='wall_time',
|
||||
),
|
||||
]
|
19
astrobasis/migrations/0012_ztfalert_wall_time.py
Normal file
19
astrobasis/migrations/0012_ztfalert_wall_time.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-29 12:52
|
||||
|
||||
import datetime
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0011_remove_ztfalert_wall_time'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='ztfalert',
|
||||
name='wall_time',
|
||||
field=models.DateTimeField(blank=True, default=datetime.datetime.now),
|
||||
),
|
||||
]
|
44
astrobasis/migrations/0013_alerce.py
Normal file
44
astrobasis/migrations/0013_alerce.py
Normal file
@@ -0,0 +1,44 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-29 15:29
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('monthplan', '0002_auto_20191209_2233'),
|
||||
('astrobasis', '0012_ztfalert_wall_time'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='ALeRCE',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('healpix', models.BigIntegerField(db_index=True, default=0)),
|
||||
('healpix_plate', models.IntegerField(default=0)),
|
||||
('created', models.DateTimeField(auto_now_add=True)),
|
||||
('classearly', models.IntegerField(default=0)),
|
||||
('classrf', models.IntegerField(default=0)),
|
||||
('oid', models.CharField(default='', max_length=12)),
|
||||
('firstmjd', models.FloatField(default=0.0)),
|
||||
('lastmjd', models.FloatField(default=0.0)),
|
||||
('mean_magap_g', models.FloatField(default=0.0)),
|
||||
('mean_magap_r', models.FloatField(default=0.0)),
|
||||
('mean_magpsf_g', models.FloatField(default=0.0)),
|
||||
('mean_magpsf_r', models.FloatField(default=0.0)),
|
||||
('meandec', models.FloatField(default=0.0)),
|
||||
('meanra', models.FloatField(default=0.0)),
|
||||
('nobs', models.IntegerField(default=0)),
|
||||
('pclassearly', models.FloatField(default=0.0)),
|
||||
('pclassrf', models.FloatField(default=0.0)),
|
||||
('sigma_magap_g', models.FloatField(default=0.0)),
|
||||
('sigma_magap_r', models.FloatField(default=0.0)),
|
||||
('sigma_magpsf_g', models.FloatField(default=0.0)),
|
||||
('sigma_magpsf_r', models.FloatField(default=0.0)),
|
||||
('sigmadec', models.FloatField(default=0.0)),
|
||||
('sigmara', models.FloatField(default=0.0)),
|
||||
('survey', models.ManyToManyField(to='monthplan.Survey')),
|
||||
],
|
||||
),
|
||||
]
|
18
astrobasis/migrations/0014_auto_20200129_1948.py
Normal file
18
astrobasis/migrations/0014_auto_20200129_1948.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-29 16:48
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0013_alerce'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='alerce',
|
||||
name='classrf',
|
||||
field=models.IntegerField(default=0, null=True),
|
||||
),
|
||||
]
|
33
astrobasis/migrations/0015_auto_20200129_1949.py
Normal file
33
astrobasis/migrations/0015_auto_20200129_1949.py
Normal file
@@ -0,0 +1,33 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-29 16:49
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0014_auto_20200129_1948'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='alerce',
|
||||
name='mean_magap_g',
|
||||
field=models.FloatField(default=0.0, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='alerce',
|
||||
name='mean_magap_r',
|
||||
field=models.FloatField(default=0.0, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='alerce',
|
||||
name='mean_magpsf_g',
|
||||
field=models.FloatField(default=0.0, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='alerce',
|
||||
name='mean_magpsf_r',
|
||||
field=models.FloatField(default=0.0, null=True),
|
||||
),
|
||||
]
|
23
astrobasis/migrations/0016_auto_20200129_1949.py
Normal file
23
astrobasis/migrations/0016_auto_20200129_1949.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-29 16:49
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0015_auto_20200129_1949'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='alerce',
|
||||
name='pclassearly',
|
||||
field=models.FloatField(default=0.0, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='alerce',
|
||||
name='pclassrf',
|
||||
field=models.FloatField(default=0.0, null=True),
|
||||
),
|
||||
]
|
33
astrobasis/migrations/0017_auto_20200129_1950.py
Normal file
33
astrobasis/migrations/0017_auto_20200129_1950.py
Normal file
@@ -0,0 +1,33 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-29 16:50
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0016_auto_20200129_1949'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='alerce',
|
||||
name='sigma_magap_g',
|
||||
field=models.FloatField(default=0.0, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='alerce',
|
||||
name='sigma_magap_r',
|
||||
field=models.FloatField(default=0.0, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='alerce',
|
||||
name='sigma_magpsf_g',
|
||||
field=models.FloatField(default=0.0, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='alerce',
|
||||
name='sigma_magpsf_r',
|
||||
field=models.FloatField(default=0.0, null=True),
|
||||
),
|
||||
]
|
18
astrobasis/migrations/0018_auto_20200130_1300.py
Normal file
18
astrobasis/migrations/0018_auto_20200130_1300.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-30 10:00
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0017_auto_20200129_1950'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='alerce',
|
||||
name='classearly',
|
||||
field=models.IntegerField(default=0, null=True),
|
||||
),
|
||||
]
|
23
astrobasis/migrations/0019_auto_20200130_1455.py
Normal file
23
astrobasis/migrations/0019_auto_20200130_1455.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-30 11:55
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0018_auto_20200130_1300'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='alerce',
|
||||
name='sigmadec',
|
||||
field=models.FloatField(default=0.0, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='alerce',
|
||||
name='sigmara',
|
||||
field=models.FloatField(default=0.0, null=True),
|
||||
),
|
||||
]
|
24
astrobasis/migrations/0020_auto_20200130_1726.py
Normal file
24
astrobasis/migrations/0020_auto_20200130_1726.py
Normal file
@@ -0,0 +1,24 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-30 14:26
|
||||
|
||||
import datetime
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0019_auto_20200130_1455'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='alerce',
|
||||
name='firstdate',
|
||||
field=models.DateTimeField(default=datetime.datetime.now),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='alerce',
|
||||
name='lastdate',
|
||||
field=models.DateTimeField(default=datetime.datetime.now),
|
||||
),
|
||||
]
|
18
astrobasis/migrations/0021_gaiadr2_error_radius.py
Normal file
18
astrobasis/migrations/0021_gaiadr2_error_radius.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-31 10:17
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0020_auto_20200130_1726'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='gaiadr2',
|
||||
name='error_radius',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
]
|
18
astrobasis/migrations/0022_alerce_error_radius.py
Normal file
18
astrobasis/migrations/0022_alerce_error_radius.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-31 12:18
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0021_gaiadr2_error_radius'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='alerce',
|
||||
name='error_radius',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
]
|
21
astrobasis/migrations/0023_auto_20200131_1555.py
Normal file
21
astrobasis/migrations/0023_auto_20200131_1555.py
Normal file
@@ -0,0 +1,21 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-31 12:55
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0022_alerce_error_radius'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='alerce',
|
||||
name='meandec',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='alerce',
|
||||
name='meanra',
|
||||
),
|
||||
]
|
23
astrobasis/migrations/0024_auto_20200131_1556.py
Normal file
23
astrobasis/migrations/0024_auto_20200131_1556.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-31 12:56
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0023_auto_20200131_1555'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='alerce',
|
||||
name='dec',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='alerce',
|
||||
name='ra',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
]
|
29
astrobasis/migrations/0025_sdssdr12spec.py
Normal file
29
astrobasis/migrations/0025_sdssdr12spec.py
Normal file
@@ -0,0 +1,29 @@
|
||||
# Generated by Django 2.2.6 on 2020-02-03 13:45
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0024_auto_20200131_1556'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='SDSSDR12Spec',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('healpix', models.BigIntegerField(db_index=True, default=0)),
|
||||
('MJD', models.FloatField(default=0.0)),
|
||||
('ra', models.FloatField(default=0.0)),
|
||||
('dec', models.FloatField(default=0.0)),
|
||||
('obj_class', models.CharField(default='', max_length=6)),
|
||||
('obj_subclass', models.CharField(default='', max_length=21)),
|
||||
('z', models.FloatField(default=0.0)),
|
||||
('z_err', models.FloatField(default=0.0)),
|
||||
('specobjid', models.CharField(default='', max_length=22)),
|
||||
('targetobjid', models.CharField(default='', max_length=22)),
|
||||
],
|
||||
),
|
||||
]
|
27
astrobasis/migrations/0026_flesch_z.py
Normal file
27
astrobasis/migrations/0026_flesch_z.py
Normal file
@@ -0,0 +1,27 @@
|
||||
# Generated by Django 2.2.6 on 2020-02-10 15:41
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0025_sdssdr12spec'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Flesch_z',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('healpix', models.BigIntegerField(db_index=True, default=0)),
|
||||
('ra', models.FloatField(default=0.0)),
|
||||
('dec', models.FloatField(default=0.0)),
|
||||
('name', models.CharField(default='', max_length=25)),
|
||||
('obj_class', models.CharField(default='', max_length=4)),
|
||||
('Rmag', models.FloatField(default=0.0)),
|
||||
('Bmag', models.FloatField(default=0.0)),
|
||||
('z', models.FloatField(default=0.0)),
|
||||
],
|
||||
),
|
||||
]
|
16
astrobasis/migrations/0027_delete_flesch_z.py
Normal file
16
astrobasis/migrations/0027_delete_flesch_z.py
Normal file
@@ -0,0 +1,16 @@
|
||||
# Generated by Django 2.2.6 on 2020-02-10 15:43
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0026_flesch_z'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.DeleteModel(
|
||||
name='Flesch_z',
|
||||
),
|
||||
]
|
27
astrobasis/migrations/0028_flesch.py
Normal file
27
astrobasis/migrations/0028_flesch.py
Normal file
@@ -0,0 +1,27 @@
|
||||
# Generated by Django 2.2.6 on 2020-02-10 15:43
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0027_delete_flesch_z'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Flesch',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('healpix', models.BigIntegerField(db_index=True, default=0)),
|
||||
('ra', models.FloatField(default=0.0)),
|
||||
('dec', models.FloatField(default=0.0)),
|
||||
('name', models.CharField(default='', max_length=25)),
|
||||
('obj_class', models.CharField(default='', max_length=4)),
|
||||
('Rmag', models.FloatField(default=0.0)),
|
||||
('Bmag', models.FloatField(default=0.0)),
|
||||
('z', models.FloatField(default=0.0)),
|
||||
],
|
||||
),
|
||||
]
|
28
astrobasis/migrations/0029_simbad.py
Normal file
28
astrobasis/migrations/0029_simbad.py
Normal file
@@ -0,0 +1,28 @@
|
||||
# Generated by Django 2.2.6 on 2020-02-22 19:54
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0028_flesch'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Simbad',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('ra', models.FloatField(default=0.0)),
|
||||
('dec', models.FloatField(default=0.0)),
|
||||
('error_radius', models.FloatField(default=0.0)),
|
||||
('main_id', models.CharField(default='', max_length=25)),
|
||||
('obj_class', models.CharField(default='', max_length=4)),
|
||||
('coo_bibcode', models.CharField(default='', max_length=25)),
|
||||
('coo_wavelength', models.CharField(default='', max_length=3)),
|
||||
('z', models.FloatField(default=0.0)),
|
||||
('otype', models.CharField(default='', max_length=21)),
|
||||
],
|
||||
),
|
||||
]
|
18
astrobasis/migrations/0030_auto_20200223_0814.py
Normal file
18
astrobasis/migrations/0030_auto_20200223_0814.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 2.2.6 on 2020-02-23 05:14
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0029_simbad'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='simbad',
|
||||
name='main_id',
|
||||
field=models.CharField(max_length=25, unique=True),
|
||||
),
|
||||
]
|
18
astrobasis/migrations/0031_simbad_healpix.py
Normal file
18
astrobasis/migrations/0031_simbad_healpix.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 2.2.6 on 2020-02-23 11:01
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0030_auto_20200223_0814'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='simbad',
|
||||
name='healpix',
|
||||
field=models.BigIntegerField(db_index=True, default=0),
|
||||
),
|
||||
]
|
18
astrobasis/migrations/0032_auto_20200223_1650.py
Normal file
18
astrobasis/migrations/0032_auto_20200223_1650.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 2.2.6 on 2020-02-23 13:50
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0031_simbad_healpix'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='simbad',
|
||||
name='main_id',
|
||||
field=models.CharField(max_length=51, unique=True),
|
||||
),
|
||||
]
|
18
astrobasis/migrations/0033_auto_20200225_1604.py
Normal file
18
astrobasis/migrations/0033_auto_20200225_1604.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 2.2.6 on 2020-02-25 13:04
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0032_auto_20200223_1650'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='simbad',
|
||||
name='coo_wavelength',
|
||||
field=models.CharField(default='', max_length=5),
|
||||
),
|
||||
]
|
18
astrobasis/migrations/0034_auto_20200225_1608.py
Normal file
18
astrobasis/migrations/0034_auto_20200225_1608.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 2.2.6 on 2020-02-25 13:08
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0033_auto_20200225_1604'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='simbad',
|
||||
name='obj_class',
|
||||
field=models.CharField(default='', max_length=10),
|
||||
),
|
||||
]
|
18
astrobasis/migrations/0035_auto_20200225_1625.py
Normal file
18
astrobasis/migrations/0035_auto_20200225_1625.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 2.2.6 on 2020-02-25 13:25
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0034_auto_20200225_1608'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='simbad',
|
||||
name='obj_class',
|
||||
field=models.CharField(default='', max_length=21),
|
||||
),
|
||||
]
|
78
astrobasis/migrations/0036_wise.py
Normal file
78
astrobasis/migrations/0036_wise.py
Normal file
@@ -0,0 +1,78 @@
|
||||
# Generated by Django 3.0.8 on 2020-07-22 14:28
|
||||
|
||||
import django.core.validators
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0035_auto_20200225_1625'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Wise',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('sep', models.FloatField(default=0, validators=[django.core.validators.MinValueValidator(0.0)])),
|
||||
('objID', models.BigIntegerField(default=0)),
|
||||
('raStack', models.FloatField(default=0.0)),
|
||||
('decStack', models.FloatField(default=0.0)),
|
||||
('raStackErr', models.FloatField(default=0.0)),
|
||||
('decStackErr', models.FloatField(default=0.0)),
|
||||
('raMean', models.FloatField(default=0.0)),
|
||||
('decMean', models.FloatField(default=0.0)),
|
||||
('raMeanErr', models.FloatField(default=0.0)),
|
||||
('decMeanErr', models.FloatField(default=0.0)),
|
||||
('objInfoFlag', models.BigIntegerField(default=0)),
|
||||
('qualityFlag', models.IntegerField(default=0)),
|
||||
('primaryDetection', models.IntegerField(default=0)),
|
||||
('bestDetection', models.IntegerField(default=0)),
|
||||
('gPSFMag', models.FloatField(default=0.0)),
|
||||
('gPSFMagErr', models.FloatField(default=0.0)),
|
||||
('gApMag', models.FloatField(default=0.0)),
|
||||
('gApMagErr', models.FloatField(default=0.0)),
|
||||
('gKronMag', models.FloatField(default=0.0)),
|
||||
('gKronMagErr', models.FloatField(default=0.0)),
|
||||
('rPSFMag', models.FloatField(default=0.0)),
|
||||
('rPSFMagErr', models.FloatField(default=0.0)),
|
||||
('rApMag', models.FloatField(default=0.0)),
|
||||
('rApMagErr', models.FloatField(default=0.0)),
|
||||
('rKronMag', models.FloatField(default=0.0)),
|
||||
('rKronMagErr', models.FloatField(default=0.0)),
|
||||
('iPSFMag', models.FloatField(default=0.0)),
|
||||
('iPSFMagErr', models.FloatField(default=0.0)),
|
||||
('iApMag', models.FloatField(default=0.0)),
|
||||
('iApMagErr', models.FloatField(default=0.0)),
|
||||
('iKronMag', models.FloatField(default=0.0)),
|
||||
('iKronMagErr', models.FloatField(default=0.0)),
|
||||
('zPSFMag', models.FloatField(default=0.0)),
|
||||
('zPSFMagErr', models.FloatField(default=0.0)),
|
||||
('zApMag', models.FloatField(default=0.0)),
|
||||
('zApMagErr', models.FloatField(default=0.0)),
|
||||
('zKronMag', models.FloatField(default=0.0)),
|
||||
('zKronMagErr', models.FloatField(default=0.0)),
|
||||
('yPSFMag', models.FloatField(default=0.0)),
|
||||
('yPSFMagErr', models.FloatField(default=0.0)),
|
||||
('yApMag', models.FloatField(default=0.0)),
|
||||
('yApMagErr', models.FloatField(default=0.0)),
|
||||
('yKronMag', models.FloatField(default=0.0)),
|
||||
('yKronMagErr', models.FloatField(default=0.0)),
|
||||
('wisefield', models.CharField(default='', max_length=8)),
|
||||
('fitext', models.BooleanField(default=False, null=True)),
|
||||
('devaucou', models.BooleanField(default=False, null=True)),
|
||||
('star', models.BooleanField(default=False, null=True)),
|
||||
('w1flux', models.FloatField(default=0.0)),
|
||||
('dw1flux', models.FloatField(default=0.0)),
|
||||
('w1mag', models.FloatField(default=0.0)),
|
||||
('dw1mag', models.FloatField(default=0.0)),
|
||||
('w1reff', models.FloatField(default=0.0)),
|
||||
('w2flux', models.FloatField(default=0.0)),
|
||||
('dw2flux', models.FloatField(default=0.0)),
|
||||
('w2mag', models.FloatField(default=0.0)),
|
||||
('dw2mag', models.FloatField(default=0.0)),
|
||||
('w2reff', models.FloatField(default=0.0)),
|
||||
],
|
||||
),
|
||||
]
|
16
astrobasis/migrations/0037_delete_wise.py
Normal file
16
astrobasis/migrations/0037_delete_wise.py
Normal file
@@ -0,0 +1,16 @@
|
||||
# Generated by Django 3.0.8 on 2020-07-22 14:30
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0036_wise'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.DeleteModel(
|
||||
name='Wise',
|
||||
),
|
||||
]
|
29
astrobasis/migrations/0038_allwise.py
Normal file
29
astrobasis/migrations/0038_allwise.py
Normal file
@@ -0,0 +1,29 @@
|
||||
# Generated by Django 3.0.8 on 2020-08-04 06:37
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0037_delete_wise'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='AllWise',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('ra', models.FloatField(default=0.0)),
|
||||
('dec', models.FloatField(default=0.0)),
|
||||
('healpix', models.BigIntegerField(db_index=True, default=0)),
|
||||
('error_radius', models.FloatField(default=0.0)),
|
||||
('name', models.CharField(max_length=51, unique=True)),
|
||||
('image_url', models.CharField(default='', max_length=150)),
|
||||
('W1mag', models.FloatField(default=0.0)),
|
||||
('e_W1mag', models.FloatField(default=0.0)),
|
||||
('W2mag', models.FloatField(default=0.0)),
|
||||
('e_W2mag', models.FloatField(default=0.0)),
|
||||
],
|
||||
),
|
||||
]
|
17
astrobasis/migrations/0039_remove_allwise_image_url.py
Normal file
17
astrobasis/migrations/0039_remove_allwise_image_url.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# Generated by Django 3.0.8 on 2020-08-04 06:49
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0038_allwise'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='allwise',
|
||||
name='image_url',
|
||||
),
|
||||
]
|
26
astrobasis/migrations/0040_nvss.py
Normal file
26
astrobasis/migrations/0040_nvss.py
Normal file
@@ -0,0 +1,26 @@
|
||||
# Generated by Django 3.0.8 on 2020-08-04 10:24
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0039_remove_allwise_image_url'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='NVSS',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('ra', models.FloatField(default=0.0)),
|
||||
('dec', models.FloatField(default=0.0)),
|
||||
('healpix', models.BigIntegerField(db_index=True, default=0)),
|
||||
('error_radius', models.FloatField(default=0.0)),
|
||||
('name', models.CharField(max_length=51, unique=True)),
|
||||
('S14', models.FloatField(default=0.0)),
|
||||
('e_S14', models.FloatField(default=0.0)),
|
||||
],
|
||||
),
|
||||
]
|
23
astrobasis/migrations/0041_auto_20200804_1457.py
Normal file
23
astrobasis/migrations/0041_auto_20200804_1457.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# Generated by Django 3.0.8 on 2020-08-04 11:57
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0040_nvss'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='nvss',
|
||||
name='e_dec',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='nvss',
|
||||
name='e_ra',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
]
|
29
astrobasis/migrations/0042_first.py
Normal file
29
astrobasis/migrations/0042_first.py
Normal file
@@ -0,0 +1,29 @@
|
||||
# Generated by Django 3.0.8 on 2020-08-04 12:17
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0041_auto_20200804_1457'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='FIRST',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('ra', models.FloatField(default=0.0)),
|
||||
('dec', models.FloatField(default=0.0)),
|
||||
('healpix', models.BigIntegerField(db_index=True, default=0)),
|
||||
('error_radius', models.FloatField(default=0.0)),
|
||||
('name', models.CharField(max_length=51, unique=True)),
|
||||
('Fpeak', models.FloatField(default=0.0)),
|
||||
('Fint', models.FloatField(default=0.0)),
|
||||
('rms', models.FloatField(default=0.0)),
|
||||
('major_axis', models.FloatField(default=0.0)),
|
||||
('minor_axis', models.FloatField(default=0.0)),
|
||||
],
|
||||
),
|
||||
]
|
32
astrobasis/migrations/0043_sumss.py
Normal file
32
astrobasis/migrations/0043_sumss.py
Normal file
@@ -0,0 +1,32 @@
|
||||
# Generated by Django 3.0.8 on 2020-08-04 13:20
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0042_first'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='SUMSS',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('ra', models.FloatField(default=0.0)),
|
||||
('dec', models.FloatField(default=0.0)),
|
||||
('e_ra', models.FloatField(default=0.0)),
|
||||
('e_dec', models.FloatField(default=0.0)),
|
||||
('healpix', models.BigIntegerField(db_index=True, default=0)),
|
||||
('error_radius', models.FloatField(default=0.0)),
|
||||
('name', models.CharField(max_length=51, unique=True)),
|
||||
('Sp', models.FloatField(default=0.0)),
|
||||
('e_Sp', models.FloatField(default=0.0)),
|
||||
('St', models.FloatField(default=0.0)),
|
||||
('e_St', models.FloatField(default=0.0)),
|
||||
('major_axis', models.FloatField(default=0.0)),
|
||||
('minor_axis', models.FloatField(default=0.0)),
|
||||
],
|
||||
),
|
||||
]
|
23
astrobasis/migrations/0044_auto_20200804_1703.py
Normal file
23
astrobasis/migrations/0044_auto_20200804_1703.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# Generated by Django 3.0.8 on 2020-08-04 14:03
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0043_sumss'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='sumss',
|
||||
name='dec_orig',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='sumss',
|
||||
name='ra_orig',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
]
|
23
astrobasis/migrations/0045_auto_20200804_1707.py
Normal file
23
astrobasis/migrations/0045_auto_20200804_1707.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# Generated by Django 3.0.8 on 2020-08-04 14:07
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0044_auto_20200804_1703'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='sumss',
|
||||
name='dec_orig',
|
||||
field=models.CharField(max_length=51, unique=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='sumss',
|
||||
name='ra_orig',
|
||||
field=models.CharField(max_length=51, unique=True),
|
||||
),
|
||||
]
|
40
astrobasis/migrations/0046_gaiadr3.py
Normal file
40
astrobasis/migrations/0046_gaiadr3.py
Normal file
@@ -0,0 +1,40 @@
|
||||
# Generated by Django 3.0.8 on 2021-02-12 10:24
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0045_auto_20200804_1707'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='GAIADR3',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('healpix', models.BigIntegerField(db_index=True, default=0)),
|
||||
('solution_id', models.CharField(blank=True, default='', max_length=19)),
|
||||
('name', models.CharField(blank=True, default='', max_length=30)),
|
||||
('source_id', models.CharField(blank=True, default='', max_length=19)),
|
||||
('error_radius', models.FloatField(default=0.0)),
|
||||
('ref_epoch', models.FloatField(default=0.0)),
|
||||
('ra', models.FloatField(default=0.0)),
|
||||
('ra_error', models.FloatField(default=0.0)),
|
||||
('dec', models.FloatField(default=0.0)),
|
||||
('dec_error', models.FloatField(default=0.0)),
|
||||
('parallax', models.FloatField(default=0.0)),
|
||||
('parallax_error', models.FloatField(default=0.0)),
|
||||
('pmra', models.FloatField(default=0.0)),
|
||||
('pmra_error', models.FloatField(default=0.0)),
|
||||
('pmdec', models.FloatField(default=0.0)),
|
||||
('pmdec_error', models.FloatField(default=0.0)),
|
||||
('phot_g_mean_mag', models.FloatField(default=0.0)),
|
||||
('phot_bp_mean_mag', models.FloatField(default=0.0)),
|
||||
('phot_rp_mean_mag', models.FloatField(default=0.0)),
|
||||
('filename', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='astrobasis.GaiaSourceFile')),
|
||||
],
|
||||
),
|
||||
]
|
17
astrobasis/migrations/0047_remove_gaiadr3_filename.py
Normal file
17
astrobasis/migrations/0047_remove_gaiadr3_filename.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# Generated by Django 3.0.8 on 2021-02-12 10:30
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0046_gaiadr3'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='gaiadr3',
|
||||
name='filename',
|
||||
),
|
||||
]
|
16
astrobasis/migrations/0048_delete_gaiadr3.py
Normal file
16
astrobasis/migrations/0048_delete_gaiadr3.py
Normal file
@@ -0,0 +1,16 @@
|
||||
# Generated by Django 3.0.8 on 2021-02-12 10:33
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0047_remove_gaiadr3_filename'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.DeleteModel(
|
||||
name='GAIADR3',
|
||||
),
|
||||
]
|
40
astrobasis/migrations/0049_gaiadr3.py
Normal file
40
astrobasis/migrations/0049_gaiadr3.py
Normal file
@@ -0,0 +1,40 @@
|
||||
# Generated by Django 3.0.8 on 2021-02-12 10:33
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0048_delete_gaiadr3'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='GAIADR3',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('healpix', models.BigIntegerField(db_index=True, default=0)),
|
||||
('solution_id', models.CharField(blank=True, default='', max_length=19)),
|
||||
('name', models.CharField(blank=True, default='', max_length=30)),
|
||||
('source_id', models.CharField(blank=True, default='', max_length=19)),
|
||||
('error_radius', models.FloatField(default=0.0)),
|
||||
('ref_epoch', models.FloatField(default=0.0)),
|
||||
('ra', models.FloatField(default=0.0)),
|
||||
('ra_error', models.FloatField(default=0.0)),
|
||||
('dec', models.FloatField(default=0.0)),
|
||||
('dec_error', models.FloatField(default=0.0)),
|
||||
('parallax', models.FloatField(default=0.0)),
|
||||
('parallax_error', models.FloatField(default=0.0)),
|
||||
('pmra', models.FloatField(default=0.0)),
|
||||
('pmra_error', models.FloatField(default=0.0)),
|
||||
('pmdec', models.FloatField(default=0.0)),
|
||||
('pmdec_error', models.FloatField(default=0.0)),
|
||||
('phot_g_mean_mag', models.FloatField(default=0.0)),
|
||||
('phot_bp_mean_mag', models.FloatField(default=0.0)),
|
||||
('phot_rp_mean_mag', models.FloatField(default=0.0)),
|
||||
('filename', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='astrobasis.GaiaSourceFile')),
|
||||
],
|
||||
),
|
||||
]
|
16
astrobasis/migrations/0050_delete_gaiadr3.py
Normal file
16
astrobasis/migrations/0050_delete_gaiadr3.py
Normal file
@@ -0,0 +1,16 @@
|
||||
# Generated by Django 3.0.8 on 2021-02-12 12:02
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0049_gaiadr3'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.DeleteModel(
|
||||
name='GAIADR3',
|
||||
),
|
||||
]
|
49
astrobasis/migrations/0051_gaiadr3_gaiasourcefiledr3.py
Normal file
49
astrobasis/migrations/0051_gaiadr3_gaiasourcefiledr3.py
Normal file
@@ -0,0 +1,49 @@
|
||||
# Generated by Django 3.0.8 on 2021-02-12 12:03
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0050_delete_gaiadr3'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='GaiaSourceFileDR3',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('filename', models.CharField(blank=True, default='', max_length=80)),
|
||||
('status', models.CharField(default='empty', max_length=7)),
|
||||
('nrows', models.IntegerField(default=0)),
|
||||
],
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='GAIADR3',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('healpix', models.BigIntegerField(db_index=True, default=0)),
|
||||
('solution_id', models.CharField(blank=True, default='', max_length=19)),
|
||||
('name', models.CharField(blank=True, default='', max_length=30)),
|
||||
('source_id', models.CharField(blank=True, default='', max_length=19)),
|
||||
('error_radius', models.FloatField(default=0.0)),
|
||||
('ref_epoch', models.FloatField(default=0.0)),
|
||||
('ra', models.FloatField(default=0.0)),
|
||||
('ra_error', models.FloatField(default=0.0)),
|
||||
('dec', models.FloatField(default=0.0)),
|
||||
('dec_error', models.FloatField(default=0.0)),
|
||||
('parallax', models.FloatField(default=0.0)),
|
||||
('parallax_error', models.FloatField(default=0.0)),
|
||||
('pmra', models.FloatField(default=0.0)),
|
||||
('pmra_error', models.FloatField(default=0.0)),
|
||||
('pmdec', models.FloatField(default=0.0)),
|
||||
('pmdec_error', models.FloatField(default=0.0)),
|
||||
('phot_g_mean_mag', models.FloatField(default=0.0)),
|
||||
('phot_bp_mean_mag', models.FloatField(default=0.0)),
|
||||
('phot_rp_mean_mag', models.FloatField(default=0.0)),
|
||||
('filename', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='astrobasis.GaiaSourceFileDR3')),
|
||||
],
|
||||
),
|
||||
]
|
17
astrobasis/migrations/0052_remove_gaiadr3_solution_id.py
Normal file
17
astrobasis/migrations/0052_remove_gaiadr3_solution_id.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# Generated by Django 3.0.8 on 2021-02-12 12:14
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0051_gaiadr3_gaiasourcefiledr3'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='gaiadr3',
|
||||
name='solution_id',
|
||||
),
|
||||
]
|
17
astrobasis/migrations/0053_remove_gaiadr3_ref_epoch.py
Normal file
17
astrobasis/migrations/0053_remove_gaiadr3_ref_epoch.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# Generated by Django 3.0.8 on 2021-02-12 12:15
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0052_remove_gaiadr3_solution_id'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='gaiadr3',
|
||||
name='ref_epoch',
|
||||
),
|
||||
]
|
23
astrobasis/migrations/0054_auto_20210812_1858.py
Normal file
23
astrobasis/migrations/0054_auto_20210812_1858.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# Generated by Django 3.0.8 on 2021-08-12 15:58
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0053_remove_gaiadr3_ref_epoch'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='sumss',
|
||||
name='dec_orig',
|
||||
field=models.CharField(max_length=51),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='sumss',
|
||||
name='ra_orig',
|
||||
field=models.CharField(max_length=51),
|
||||
),
|
||||
]
|
78
astrobasis/migrations/0055_auto_20211229_1259.py
Normal file
78
astrobasis/migrations/0055_auto_20211229_1259.py
Normal file
@@ -0,0 +1,78 @@
|
||||
# Generated by Django 3.2.10 on 2021-12-29 09:59
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0054_auto_20210812_1858'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='alerce',
|
||||
name='id',
|
||||
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='allwise',
|
||||
name='id',
|
||||
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='first',
|
||||
name='id',
|
||||
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='flesch',
|
||||
name='id',
|
||||
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='gaiadr2',
|
||||
name='id',
|
||||
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='gaiadr3',
|
||||
name='id',
|
||||
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='gaiasourcefile',
|
||||
name='id',
|
||||
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='gaiasourcefiledr3',
|
||||
name='id',
|
||||
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='nvss',
|
||||
name='id',
|
||||
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='sdssdr12spec',
|
||||
name='id',
|
||||
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='simbad',
|
||||
name='id',
|
||||
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='sumss',
|
||||
name='id',
|
||||
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='ztfalert',
|
||||
name='id',
|
||||
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
|
||||
),
|
||||
]
|
39
astrobasis/migrations/0056_twomass.py
Normal file
39
astrobasis/migrations/0056_twomass.py
Normal file
@@ -0,0 +1,39 @@
|
||||
# Generated by Django 3.2.12 on 2022-03-05 16:39
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0055_auto_20211229_1259'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='TwoMASS',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('healpix', models.BigIntegerField(db_index=True, default=0)),
|
||||
('ra', models.FloatField(default=0.0)),
|
||||
('dec', models.FloatField(default=0.0)),
|
||||
('error_radius', models.FloatField(default=0.5)),
|
||||
('name', models.CharField(blank=True, default='', max_length=16)),
|
||||
('jmag', models.FloatField(default=0.0, null=True)),
|
||||
('e_jmag', models.FloatField(default=0.0, null=True)),
|
||||
('hmag', models.FloatField(default=0.0, null=True)),
|
||||
('e_hmag', models.FloatField(default=0.0, null=True)),
|
||||
('kmag', models.FloatField(default=0.0, null=True)),
|
||||
('e_kmag', models.FloatField(default=0.0, null=True)),
|
||||
('qkfg', models.CharField(blank=True, default='', max_length=3, null=True)),
|
||||
('rkfg', models.CharField(blank=True, default='', max_length=3, null=True)),
|
||||
('bkfg', models.CharField(blank=True, default='', max_length=3, null=True)),
|
||||
('ckfg', models.CharField(blank=True, default='', max_length=3, null=True)),
|
||||
('prox', models.FloatField(default=0.0, null=True)),
|
||||
('xflg', models.BooleanField(default=False, null=True)),
|
||||
('aflg', models.BooleanField(default=False, null=True)),
|
||||
('glon', models.FloatField(default=0.0)),
|
||||
('glat', models.FloatField(default=0.0)),
|
||||
],
|
||||
),
|
||||
]
|
38
astrobasis/migrations/0057_glimpse.py
Normal file
38
astrobasis/migrations/0057_glimpse.py
Normal file
@@ -0,0 +1,38 @@
|
||||
# Generated by Django 3.2.12 on 2022-03-05 18:03
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0056_twomass'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='GLIMPSE',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('healpix', models.BigIntegerField(db_index=True, default=0)),
|
||||
('ra', models.FloatField(default=0.0)),
|
||||
('dec', models.FloatField(default=0.0)),
|
||||
('error_radius', models.FloatField(default=0.5)),
|
||||
('name', models.CharField(blank=True, default='', max_length=17)),
|
||||
('twomass', models.CharField(blank=True, default='', max_length=16)),
|
||||
('jmag', models.FloatField(default=0.0, null=True)),
|
||||
('hmag', models.FloatField(default=0.0, null=True)),
|
||||
('kmag', models.FloatField(default=0.0, null=True)),
|
||||
('b1mag', models.FloatField(default=0.0, null=True)),
|
||||
('e_b1mag', models.FloatField(default=0.0, null=True)),
|
||||
('b2mag', models.FloatField(default=0.0, null=True)),
|
||||
('e_b2mag', models.FloatField(default=0.0, null=True)),
|
||||
('b3mag', models.FloatField(default=0.0, null=True)),
|
||||
('e_b3mag', models.FloatField(default=0.0, null=True)),
|
||||
('b4mag', models.FloatField(default=0.0, null=True)),
|
||||
('e_b4mag', models.FloatField(default=0.0, null=True)),
|
||||
('glon', models.FloatField(default=0.0)),
|
||||
('glat', models.FloatField(default=0.0)),
|
||||
],
|
||||
),
|
||||
]
|
18
astrobasis/migrations/0058_alter_glimpse_healpix.py
Normal file
18
astrobasis/migrations/0058_alter_glimpse_healpix.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 3.2.12 on 2022-03-15 08:05
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0057_glimpse'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='glimpse',
|
||||
name='healpix',
|
||||
field=models.BigIntegerField(db_index=True, default=0, null=True),
|
||||
),
|
||||
]
|
23
astrobasis/migrations/0059_auto_20220315_1125.py
Normal file
23
astrobasis/migrations/0059_auto_20220315_1125.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# Generated by Django 3.2.12 on 2022-03-15 08:25
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0058_alter_glimpse_healpix'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='glimpse',
|
||||
name='glat',
|
||||
field=models.FloatField(default=0.0, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='glimpse',
|
||||
name='glon',
|
||||
field=models.FloatField(default=0.0, null=True),
|
||||
),
|
||||
]
|
17
astrobasis/migrations/0060_alter_glimpse_options.py
Normal file
17
astrobasis/migrations/0060_alter_glimpse_options.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# Generated by Django 3.2.12 on 2022-03-23 08:35
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0059_auto_20220315_1125'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='glimpse',
|
||||
options={'ordering': ['-id']},
|
||||
),
|
||||
]
|
28
astrobasis/migrations/0061_vlass.py
Normal file
28
astrobasis/migrations/0061_vlass.py
Normal file
@@ -0,0 +1,28 @@
|
||||
# Generated by Django 3.2.12 on 2022-03-25 14:18
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0060_alter_glimpse_options'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='VLASS',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('ra', models.FloatField(default=0.0)),
|
||||
('dec', models.FloatField(default=0.0)),
|
||||
('healpix', models.BigIntegerField(db_index=True, default=0)),
|
||||
('error_radius', models.FloatField(default=0.0)),
|
||||
('name', models.CharField(max_length=51, unique=True)),
|
||||
('ftot', models.FloatField(default=0.0)),
|
||||
('e_ftot', models.FloatField(default=0.0)),
|
||||
('fpeak', models.FloatField(default=0.0)),
|
||||
('e_fpeak', models.FloatField(default=0.0)),
|
||||
],
|
||||
),
|
||||
]
|
38
astrobasis/migrations/0062_auto_20220325_1731.py
Normal file
38
astrobasis/migrations/0062_auto_20220325_1731.py
Normal file
@@ -0,0 +1,38 @@
|
||||
# Generated by Django 3.2.12 on 2022-03-25 14:31
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0061_vlass'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='vlass',
|
||||
name='dec_m',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='vlass',
|
||||
name='e_dec',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='vlass',
|
||||
name='e_ra',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='vlass',
|
||||
name='ra_m',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='vlass',
|
||||
name='name',
|
||||
field=models.CharField(max_length=31, unique=True),
|
||||
),
|
||||
]
|
28
astrobasis/migrations/0063_auto_20220325_1742.py
Normal file
28
astrobasis/migrations/0063_auto_20220325_1742.py
Normal file
@@ -0,0 +1,28 @@
|
||||
# Generated by Django 3.2.12 on 2022-03-25 14:42
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0062_auto_20220325_1731'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='vlass',
|
||||
name='dupflag',
|
||||
field=models.IntegerField(default=0),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='vlass',
|
||||
name='qualflag',
|
||||
field=models.IntegerField(default=0),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='vlass',
|
||||
name='name',
|
||||
field=models.CharField(max_length=31),
|
||||
),
|
||||
]
|
23
astrobasis/migrations/0064_auto_20220325_1752.py
Normal file
23
astrobasis/migrations/0064_auto_20220325_1752.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# Generated by Django 3.2.12 on 2022-03-25 14:52
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0063_auto_20220325_1742'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='vlass',
|
||||
name='glat',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='vlass',
|
||||
name='glon',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
]
|
25
astrobasis/migrations/0065_auto_20220330_1313.py
Normal file
25
astrobasis/migrations/0065_auto_20220330_1313.py
Normal file
@@ -0,0 +1,25 @@
|
||||
# Generated by Django 3.2.12 on 2022-03-30 10:13
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0064_auto_20220325_1752'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='first',
|
||||
options={'ordering': ['-id']},
|
||||
),
|
||||
migrations.AlterModelOptions(
|
||||
name='sumss',
|
||||
options={'ordering': ['-id']},
|
||||
),
|
||||
migrations.AlterModelOptions(
|
||||
name='vlass',
|
||||
options={'ordering': ['-id']},
|
||||
),
|
||||
]
|
18
astrobasis/migrations/0066_alter_twomass_name.py
Normal file
18
astrobasis/migrations/0066_alter_twomass_name.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 3.2.12 on 2022-03-31 10:02
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0065_auto_20220330_1313'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='twomass',
|
||||
name='name',
|
||||
field=models.CharField(blank=True, default='', max_length=17),
|
||||
),
|
||||
]
|
39
astrobasis/migrations/0067_vlassfromvizier.py
Normal file
39
astrobasis/migrations/0067_vlassfromvizier.py
Normal file
@@ -0,0 +1,39 @@
|
||||
# Generated by Django 3.2.12 on 2022-04-04 13:29
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0066_alter_twomass_name'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='VLASSfromVizieR',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('glon', models.FloatField(default=0.0)),
|
||||
('glat', models.FloatField(default=0.0)),
|
||||
('ra', models.FloatField(default=0.0)),
|
||||
('dec', models.FloatField(default=0.0)),
|
||||
('e_ra', models.FloatField(default=0.0)),
|
||||
('e_dec', models.FloatField(default=0.0)),
|
||||
('ra_m', models.FloatField(default=0.0)),
|
||||
('dec_m', models.FloatField(default=0.0)),
|
||||
('healpix', models.BigIntegerField(db_index=True, default=0)),
|
||||
('error_radius', models.FloatField(default=0.0)),
|
||||
('name', models.CharField(max_length=31)),
|
||||
('ftot', models.FloatField(default=0.0)),
|
||||
('e_ftot', models.FloatField(default=0.0)),
|
||||
('fpeak', models.FloatField(default=0.0)),
|
||||
('e_fpeak', models.FloatField(default=0.0)),
|
||||
('dupflag', models.IntegerField(default=0)),
|
||||
('qualflag', models.IntegerField(default=0)),
|
||||
],
|
||||
options={
|
||||
'ordering': ['-id'],
|
||||
},
|
||||
),
|
||||
]
|
21
astrobasis/migrations/0068_auto_20220404_1639.py
Normal file
21
astrobasis/migrations/0068_auto_20220404_1639.py
Normal file
@@ -0,0 +1,21 @@
|
||||
# Generated by Django 3.2.12 on 2022-04-04 13:39
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0067_vlassfromvizier'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='vlassfromvizier',
|
||||
name='dec_m',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='vlassfromvizier',
|
||||
name='ra_m',
|
||||
),
|
||||
]
|
18
astrobasis/migrations/0069_vlassfromvizier_recno.py
Normal file
18
astrobasis/migrations/0069_vlassfromvizier_recno.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 3.2.12 on 2022-04-04 16:40
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0068_auto_20220404_1639'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='vlassfromvizier',
|
||||
name='recno',
|
||||
field=models.IntegerField(default=0),
|
||||
),
|
||||
]
|
17
astrobasis/migrations/0070_alter_twomass_options.py
Normal file
17
astrobasis/migrations/0070_alter_twomass_options.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# Generated by Django 3.2.12 on 2022-04-07 14:17
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0069_vlassfromvizier_recno'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='twomass',
|
||||
options={'ordering': ['-id']},
|
||||
),
|
||||
]
|
30
astrobasis/migrations/0071_astrobasisusercat.py
Normal file
30
astrobasis/migrations/0071_astrobasisusercat.py
Normal file
@@ -0,0 +1,30 @@
|
||||
# Generated by Django 3.2.13 on 2022-06-09 14:20
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0070_alter_twomass_options'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='AstroBasisUserCat',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('ra', models.FloatField(default=0.0)),
|
||||
('dec', models.FloatField(default=0.0)),
|
||||
('healpix', models.BigIntegerField(db_index=True, default=0)),
|
||||
('error_radius', models.FloatField(default=0.0)),
|
||||
('name', models.CharField(max_length=51, unique=True)),
|
||||
('notes', models.TextField(blank=True, max_length=2000, null=True, verbose_name='notes')),
|
||||
('bibcode', models.CharField(blank=True, default='', max_length=36)),
|
||||
('autoname', models.BooleanField(default=False, help_text='Generate IAU name of the component in the form <b>NAME JHHMMSS.s+DDMMSS</b>, <br>where NAME is taken from the corresponding field above.')),
|
||||
],
|
||||
options={
|
||||
'ordering': ['-id'],
|
||||
},
|
||||
),
|
||||
]
|
16
astrobasis/migrations/0072_delete_astrobasisusercat.py
Normal file
16
astrobasis/migrations/0072_delete_astrobasisusercat.py
Normal file
@@ -0,0 +1,16 @@
|
||||
# Generated by Django 3.2.13 on 2022-06-09 14:37
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0071_astrobasisusercat'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.DeleteModel(
|
||||
name='AstroBasisUserCat',
|
||||
),
|
||||
]
|
30
astrobasis/migrations/0073_astrobasisusercat.py
Normal file
30
astrobasis/migrations/0073_astrobasisusercat.py
Normal file
@@ -0,0 +1,30 @@
|
||||
# Generated by Django 3.2.13 on 2022-06-10 15:24
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0072_delete_astrobasisusercat'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='AstroBasisUserCat',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('ra', models.FloatField(default=0.0)),
|
||||
('dec', models.FloatField(default=0.0)),
|
||||
('healpix', models.BigIntegerField(db_index=True, default=0)),
|
||||
('error_radius', models.FloatField(default=0.0)),
|
||||
('name', models.CharField(max_length=51, unique=True)),
|
||||
('notes', models.TextField(blank=True, max_length=2000, null=True, verbose_name='notes')),
|
||||
('bibcode', models.CharField(blank=True, default='', max_length=36)),
|
||||
('autoname', models.BooleanField(default=False, help_text='Generate IAU name of the component in the form <b>NAME JHHMMSS.s+DDMMSS</b>, <br>where NAME is taken from the corresponding field above.')),
|
||||
],
|
||||
options={
|
||||
'ordering': ['-id'],
|
||||
},
|
||||
),
|
||||
]
|
24
astrobasis/migrations/0074_magnitude.py
Normal file
24
astrobasis/migrations/0074_magnitude.py
Normal file
@@ -0,0 +1,24 @@
|
||||
# Generated by Django 3.2.13 on 2022-06-13 13:57
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0073_astrobasisusercat'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Magnitude',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('magn', models.FloatField(default=0.0)),
|
||||
('band', models.CharField(choices=[('U', 'U'), ('B', 'B'), ('V', 'V'), ('R', 'R'), ('I', 'I'), ('Z', 'Z'), ('Y', 'Y'), ('', 'J'), ('H', 'H'), ('K', 'K'), ('Ks', 'Ks'), ('Br_gamma', 'Br_gamma'), ('u', 'u'), ('g', 'g'), ('r', 'r'), ('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)),
|
||||
],
|
||||
options={
|
||||
'verbose_name_plural': 'Magnitudes',
|
||||
},
|
||||
),
|
||||
]
|
18
astrobasis/migrations/0075_astrobasisusercat_magnitudes.py
Normal file
18
astrobasis/migrations/0075_astrobasisusercat_magnitudes.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 3.2.13 on 2022-06-13 13:59
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0074_magnitude'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='astrobasisusercat',
|
||||
name='magnitudes',
|
||||
field=models.ManyToManyField(to='astrobasis.Magnitude'),
|
||||
),
|
||||
]
|
18
astrobasis/migrations/0076_magnitude_error.py
Normal file
18
astrobasis/migrations/0076_magnitude_error.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 3.2.13 on 2022-06-14 14:13
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0075_astrobasisusercat_magnitudes'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='magnitude',
|
||||
name='error',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
]
|
18
astrobasis/migrations/0077_alter_magnitude_band.py
Normal file
18
astrobasis/migrations/0077_alter_magnitude_band.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# 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),
|
||||
),
|
||||
]
|
18
astrobasis/migrations/0078_alter_simbad_obj_class.py
Normal file
18
astrobasis/migrations/0078_alter_simbad_obj_class.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 3.2.13 on 2022-07-01 20:38
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0077_alter_magnitude_band'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='simbad',
|
||||
name='obj_class',
|
||||
field=models.CharField(default='', max_length=30),
|
||||
),
|
||||
]
|
33
astrobasis/migrations/0079_bjfromvizier.py
Normal file
33
astrobasis/migrations/0079_bjfromvizier.py
Normal file
@@ -0,0 +1,33 @@
|
||||
# Generated by Django 3.2.13 on 2023-10-23 12:59
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0078_alter_simbad_obj_class'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='BJfromVizieR',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('recno', models.IntegerField(default=0)),
|
||||
('ra', models.FloatField(default=0.0)),
|
||||
('dec', models.FloatField(default=0.0)),
|
||||
('r_med_geo', models.FloatField(default=0.0)),
|
||||
('r_lo_geo', models.FloatField(default=0.0)),
|
||||
('r_hi_geo', models.FloatField(default=0.0)),
|
||||
('r_med_pgeo', models.FloatField(default=0.0)),
|
||||
('r_lo_pgeo', models.FloatField(default=0.0)),
|
||||
('r_hi_pgeo', models.FloatField(default=0.0)),
|
||||
('flag', models.CharField(max_length=5)),
|
||||
('source_id', models.BigIntegerField(db_index=True, default=0)),
|
||||
],
|
||||
options={
|
||||
'ordering': ['-id'],
|
||||
},
|
||||
),
|
||||
]
|
23
astrobasis/migrations/0080_auto_20231023_1633.py
Normal file
23
astrobasis/migrations/0080_auto_20231023_1633.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# Generated by Django 3.2.13 on 2023-10-23 13:33
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0079_bjfromvizier'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='bjfromvizier',
|
||||
name='error_radius',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='bjfromvizier',
|
||||
name='healpix',
|
||||
field=models.BigIntegerField(db_index=True, default=0),
|
||||
),
|
||||
]
|
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 3.2.13 on 2023-10-23 13:46
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0080_auto_20231023_1633'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='bjfromvizier',
|
||||
name='error_radius',
|
||||
field=models.FloatField(default=0.1),
|
||||
),
|
||||
]
|
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 3.2.13 on 2023-10-23 13:51
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0081_alter_bjfromvizier_error_radius'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='bjfromvizier',
|
||||
name='error_radius',
|
||||
field=models.FloatField(default=0.00035),
|
||||
),
|
||||
]
|
17
astrobasis/migrations/0083_remove_bjfromvizier_recno.py
Normal file
17
astrobasis/migrations/0083_remove_bjfromvizier_recno.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# Generated by Django 3.2.13 on 2023-10-23 13:57
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0082_alter_bjfromvizier_error_radius'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='bjfromvizier',
|
||||
name='recno',
|
||||
),
|
||||
]
|
18
astrobasis/migrations/0084_alter_bjfromvizier_flag.py
Normal file
18
astrobasis/migrations/0084_alter_bjfromvizier_flag.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 3.2.13 on 2023-10-23 14:01
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0083_remove_bjfromvizier_recno'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='bjfromvizier',
|
||||
name='flag',
|
||||
field=models.CharField(max_length=6),
|
||||
),
|
||||
]
|
17
astrobasis/migrations/0085_remove_bjfromvizier_flag.py
Normal file
17
astrobasis/migrations/0085_remove_bjfromvizier_flag.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# Generated by Django 3.2.13 on 2023-10-23 14:02
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0084_alter_bjfromvizier_flag'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='bjfromvizier',
|
||||
name='flag',
|
||||
),
|
||||
]
|
37
astrobasis/migrations/0086_gaiadr3fromvizier.py
Normal file
37
astrobasis/migrations/0086_gaiadr3fromvizier.py
Normal file
@@ -0,0 +1,37 @@
|
||||
# Generated by Django 3.2.13 on 2023-10-25 09:49
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0085_remove_bjfromvizier_flag'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='GAIADR3fromVizieR',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('ra', models.FloatField(default=0.0)),
|
||||
('dec', models.FloatField(default=0.0)),
|
||||
('healpix', models.BigIntegerField(db_index=True, default=0)),
|
||||
('error_radius', models.FloatField(default=0.00035)),
|
||||
('source_id', models.BigIntegerField(db_index=True, default=0)),
|
||||
('e_ra', models.FloatField(default=0.0)),
|
||||
('e_dec', models.FloatField(default=0.0)),
|
||||
('plx', models.FloatField(default=0.0)),
|
||||
('e_plx', models.FloatField(default=0.0)),
|
||||
('rplx', models.FloatField(default=0.0)),
|
||||
('pm', models.FloatField(default=0.0)),
|
||||
('pmra', models.FloatField(default=0.0)),
|
||||
('e_pmra', models.FloatField(default=0.0)),
|
||||
('pmde', models.FloatField(default=0.0)),
|
||||
('e_pmde', models.FloatField(default=0.0)),
|
||||
],
|
||||
options={
|
||||
'ordering': ['-id'],
|
||||
},
|
||||
),
|
||||
]
|
43
astrobasis/migrations/0087_auto_20231025_1924.py
Normal file
43
astrobasis/migrations/0087_auto_20231025_1924.py
Normal file
@@ -0,0 +1,43 @@
|
||||
# Generated by Django 3.2.13 on 2023-10-25 16:24
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0086_gaiadr3fromvizier'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='gaiadr3fromvizier',
|
||||
name='bpmag',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='gaiadr3fromvizier',
|
||||
name='e_bpmag',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='gaiadr3fromvizier',
|
||||
name='e_gmag',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='gaiadr3fromvizier',
|
||||
name='e_rpmag',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='gaiadr3fromvizier',
|
||||
name='gmag',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='gaiadr3fromvizier',
|
||||
name='rpmag',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
]
|
0
astrobasis/migrations/__init__.py
Normal file
0
astrobasis/migrations/__init__.py
Normal file
Reference in New Issue
Block a user