HEASARC
This commit is contained in:
336
heasarc/migrations/0001_initial.py
Normal file
336
heasarc/migrations/0001_initial.py
Normal file
@@ -0,0 +1,336 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-21 10:18
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
('contenttypes', '0002_remove_content_type_name'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='HeasarcBase',
|
||||
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)),
|
||||
('lii', models.FloatField(default=0.0)),
|
||||
('bii', models.FloatField(default=0.0)),
|
||||
('error_radius', models.FloatField(default=0.0)),
|
||||
('name', models.CharField(blank=True, default='', max_length=50)),
|
||||
('polymorphic_ctype', models.ForeignKey(editable=False, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='polymorphic_heasarc.heasarcbase_set+', to='contenttypes.ContentType')),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
'base_manager_name': 'objects',
|
||||
},
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='HeasarcTable',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('name', models.CharField(blank=True, default='', max_length=36, unique=True)),
|
||||
('description', models.CharField(blank=True, default='', max_length=120)),
|
||||
('document_url', models.URLField(blank=True, default='', max_length=120)),
|
||||
('search_radius', models.IntegerField(default=0)),
|
||||
('frequency_regime', models.CharField(blank=True, default='', max_length=36)),
|
||||
('observatory_name', models.CharField(blank=True, default='', max_length=36)),
|
||||
('security', models.CharField(blank=True, default='', max_length=36)),
|
||||
('parameter_defaults', models.CharField(blank=True, default='', max_length=1000)),
|
||||
('declination', models.CharField(blank=True, default='', max_length=36)),
|
||||
('right_ascension', models.CharField(blank=True, default='', max_length=36)),
|
||||
('author', models.CharField(blank=True, default='', max_length=36)),
|
||||
('bibcode', models.CharField(blank=True, default='', max_length=36)),
|
||||
],
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='Heasarc2SXPS',
|
||||
fields=[
|
||||
('heasarcbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='heasarc.HeasarcBase')),
|
||||
('Exposure', models.FloatField(default=0.0)),
|
||||
('LastObsDate', models.DateTimeField(blank=True, null=True)),
|
||||
('FirstObsDate', models.DateTimeField(blank=True, null=True)),
|
||||
('FirstDetDate', models.DateTimeField(blank=True, null=True)),
|
||||
('LastDetDate', models.DateTimeField(blank=True, null=True)),
|
||||
('BestDetectionID', models.IntegerField(default=0)),
|
||||
('DetFlag', models.IntegerField(default=0)),
|
||||
('Rate_band0', models.FloatField(default=0.0)),
|
||||
('Rate_band0_pos', models.FloatField(default=0.0)),
|
||||
('Rate_band0_neg', models.FloatField(default=0.0)),
|
||||
('Rate_band1', models.FloatField(default=0.0)),
|
||||
('Rate_band1_pos', models.FloatField(default=0.0)),
|
||||
('Rate_band1_neg', models.FloatField(default=0.0)),
|
||||
('Rate_band2', models.FloatField(default=0.0)),
|
||||
('Rate_band2_pos', models.FloatField(default=0.0)),
|
||||
('Rate_band2_neg', models.FloatField(default=0.0)),
|
||||
('Rate_band3', models.FloatField(default=0.0)),
|
||||
('Rate_band3_pos', models.FloatField(default=0.0)),
|
||||
('Rate_band3_neg', models.FloatField(default=0.0)),
|
||||
('PeakRate_band0_pos', models.FloatField(default=0.0)),
|
||||
('PeakRate_band0_neg', models.FloatField(default=0.0)),
|
||||
('PeakRate_band1', models.FloatField(default=0.0)),
|
||||
('PeakRate_band1_pos', models.FloatField(default=0.0)),
|
||||
('PeakRate_band1_neg', models.FloatField(default=0.0)),
|
||||
('PeakRate_band2', models.FloatField(default=0.0)),
|
||||
('PeakRate_band2_pos', models.FloatField(default=0.0)),
|
||||
('PeakRate_band2_neg', models.FloatField(default=0.0)),
|
||||
('PeakRate_band3', models.FloatField(default=0.0)),
|
||||
('PeakRate_band3_pos', models.FloatField(default=0.0)),
|
||||
('PeakRate_band3_neg', models.FloatField(default=0.0)),
|
||||
('PowFlux', models.FloatField(default=0.0)),
|
||||
('PowFlux_pos', models.FloatField(default=0.0)),
|
||||
('PowFlux_neg', models.FloatField(default=0.0)),
|
||||
('APECFlux', models.FloatField(default=0.0)),
|
||||
('APECFlux_pos', models.FloatField(default=0.0)),
|
||||
('APECFlux_neg', models.FloatField(default=0.0)),
|
||||
('PowPeakFlux', models.FloatField(default=0.0)),
|
||||
('PowPeakFlux_pos', models.FloatField(default=0.0)),
|
||||
('PowPeakFlux_neg', models.FloatField(default=0.0)),
|
||||
('FittedPowNH', models.FloatField(default=0.0)),
|
||||
('FittedPowRedChi', models.FloatField(default=0.0)),
|
||||
('FittedAPECNH', models.FloatField(default=0.0)),
|
||||
('FittedAPECRedChi', models.FloatField(default=0.0)),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
'base_manager_name': 'objects',
|
||||
},
|
||||
bases=('heasarc.heasarcbase',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='Heasarc4XMMDR9',
|
||||
fields=[
|
||||
('heasarcbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='heasarc.HeasarcBase')),
|
||||
('SRCID', models.BigIntegerField(default=0)),
|
||||
('POSERR', models.FloatField(default=0.0)),
|
||||
('DET_ML', models.FloatField(default=0.0)),
|
||||
('EP_1_FLUX', models.FloatField(default=0.0)),
|
||||
('EP_1_FLUX_ERR', models.FloatField(default=0.0)),
|
||||
('EP_2_FLUX', models.FloatField(default=0.0)),
|
||||
('EP_2_FLUX_ERR', models.FloatField(default=0.0)),
|
||||
('EP_3_FLUX', models.FloatField(default=0.0)),
|
||||
('EP_3_FLUX_ERR', models.FloatField(default=0.0)),
|
||||
('EP_4_FLUX', models.FloatField(default=0.0)),
|
||||
('EP_4_FLUX_ERR', models.FloatField(default=0.0)),
|
||||
('EP_5_FLUX', models.FloatField(default=0.0)),
|
||||
('EP_5_FLUX_ERR', models.FloatField(default=0.0)),
|
||||
('EP_8_FLUX', models.FloatField(default=0.0)),
|
||||
('EP_8_FLUX_ERR', models.FloatField(default=0.0)),
|
||||
('EP_9_FLUX', models.FloatField(default=0.0)),
|
||||
('EP_9_FLUX_ERR', models.FloatField(default=0.0)),
|
||||
('HR1', models.FloatField(default=0.0)),
|
||||
('HR1_ERR', models.FloatField(default=0.0)),
|
||||
('HR2', models.FloatField(default=0.0)),
|
||||
('HR2_ERR', models.FloatField(default=0.0)),
|
||||
('HR3', models.FloatField(default=0.0)),
|
||||
('HR3_ERR', models.FloatField(default=0.0)),
|
||||
('HR4', models.FloatField(default=0.0)),
|
||||
('HR4_ERR', models.FloatField(default=0.0)),
|
||||
('EXTENT', models.FloatField(default=0.0)),
|
||||
('EXT_ERR', models.FloatField(default=0.0)),
|
||||
('EXT_ML', models.FloatField(default=0.0)),
|
||||
('CHI2PROB', models.FloatField(default=0.0)),
|
||||
('FVAR', models.FloatField(default=0.0)),
|
||||
('FVARERR', models.FloatField(default=0.0)),
|
||||
('VAR_FLAG', models.IntegerField(default=0)),
|
||||
('SUM_FLAG', models.IntegerField(default=0)),
|
||||
('EP_8_FMIN', models.FloatField(default=0.0)),
|
||||
('EP_8_FMIN_ERR', models.FloatField(default=0.0)),
|
||||
('EP_8_FMAX', models.FloatField(default=0.0)),
|
||||
('EP_8_FMAX_ERR', models.FloatField(default=0.0)),
|
||||
('MJD_FIRST', models.IntegerField(default=0)),
|
||||
('MJD_LAST', models.IntegerField(default=0)),
|
||||
('N_DETECTIONS', models.IntegerField(default=0)),
|
||||
('CONFUSED', models.CharField(blank=True, default='', max_length=1)),
|
||||
('WEBPAGE_URL', models.CharField(blank=True, default='', max_length=100)),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
'base_manager_name': 'objects',
|
||||
},
|
||||
bases=('heasarc.heasarcbase',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='HeasarcALLWISEAGN',
|
||||
fields=[
|
||||
('heasarcbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='heasarc.HeasarcBase')),
|
||||
('w1w2_color', models.FloatField(default=0.0)),
|
||||
('w2w3_color', models.FloatField(default=0.0)),
|
||||
('w1_mag', models.FloatField(default=0.0)),
|
||||
('gmag', models.FloatField(default=0.0)),
|
||||
('redshift', models.FloatField(default=0.0)),
|
||||
('redshift_flag', models.CharField(blank=True, default='', max_length=1)),
|
||||
('lqac2_name', models.CharField(blank=True, default='', max_length=17)),
|
||||
('dr12q_name', models.CharField(blank=True, default='', max_length=24)),
|
||||
('milliquas_name', models.CharField(blank=True, default='', max_length=25)),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
'base_manager_name': 'objects',
|
||||
},
|
||||
bases=('heasarc.heasarcbase',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='HeasarcCSC',
|
||||
fields=[
|
||||
('heasarcbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='heasarc.HeasarcBase')),
|
||||
('significance', models.FloatField(default=0.0)),
|
||||
('b_flux_ap', models.FloatField(default=0.0)),
|
||||
('b_flux_ap_hi', models.FloatField(default=0.0)),
|
||||
('b_flux_ap_lo', models.FloatField(default=0.0)),
|
||||
('m_flux_ap', models.FloatField(default=0.0)),
|
||||
('m_flux_ap_hi', models.FloatField(default=0.0)),
|
||||
('m_flux_ap_lo', models.FloatField(default=0.0)),
|
||||
('conf_flag', models.CharField(blank=True, default='', max_length=1)),
|
||||
('extent_flag', models.CharField(blank=True, default='', max_length=1)),
|
||||
('error_ellipse_r0', models.FloatField(default=0.0)),
|
||||
('error_ellipse_r1', models.FloatField(default=0.0)),
|
||||
('error_ellipse_angle', models.FloatField(default=0.0)),
|
||||
('m_photflux_ap', models.FloatField(default=0.0)),
|
||||
('m_photflux_ap_hi', models.FloatField(default=0.0)),
|
||||
('m_photflux_ap_lo', models.FloatField(default=0.0)),
|
||||
('s_photflux_ap', models.FloatField(default=0.0)),
|
||||
('s_photflux_ap_hi', models.FloatField(default=0.0)),
|
||||
('s_photflux_ap_lo', models.FloatField(default=0.0)),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
'base_manager_name': 'objects',
|
||||
},
|
||||
bases=('heasarc.heasarcbase',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='HeasarcRASS2RXS',
|
||||
fields=[
|
||||
('heasarcbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='heasarc.HeasarcBase')),
|
||||
('count_rate', models.FloatField(default=0.0)),
|
||||
('count_rate_error', models.FloatField(default=0.0)),
|
||||
('exposure', models.FloatField(default=0.0)),
|
||||
('source_extent', models.FloatField(default=0.0)),
|
||||
('source_extent_prob', models.FloatField(default=0.0)),
|
||||
('source_quality_flag', models.IntegerField(default=0)),
|
||||
('hardness_ratio_1', models.FloatField(default=0.0)),
|
||||
('hardness_ratio_2', models.FloatField(default=0.0)),
|
||||
('plaw_flux', models.FloatField(default=0.0)),
|
||||
('plaw_chi2_reduced', models.FloatField(default=0.0)),
|
||||
('plaw_nh', models.FloatField(default=0.0)),
|
||||
('mekal_flux', models.FloatField(default=0.0)),
|
||||
('mekal_chi2_reduced', models.FloatField(default=0.0)),
|
||||
('mekal_nh', models.FloatField(default=0.0)),
|
||||
('bb_flux', models.FloatField(default=0.0)),
|
||||
('bb_chi2_reduced', models.FloatField(default=0.0)),
|
||||
('bb_nh', models.FloatField(default=0.0)),
|
||||
('x_pixel_error', models.FloatField(default=0.0)),
|
||||
('y_pixel_error', models.FloatField(default=0.0)),
|
||||
('time', models.FloatField(default=0.0)),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
'base_manager_name': 'objects',
|
||||
},
|
||||
bases=('heasarc.heasarcbase',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='HeasarcXMMSSC',
|
||||
fields=[
|
||||
('heasarcbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='heasarc.HeasarcBase')),
|
||||
('detid', models.CharField(blank=True, default='', max_length=15)),
|
||||
('srcid', models.CharField(blank=True, default='', max_length=15)),
|
||||
('time', models.FloatField(default=0.0)),
|
||||
('end_time', models.FloatField(default=0.0)),
|
||||
('ep_8_flux', models.FloatField(default=0.0)),
|
||||
('ep_8_flux_error', models.FloatField(default=0.0)),
|
||||
('pn_8_flux', models.FloatField(default=0.0)),
|
||||
('pn_8_flux_error', models.FloatField(default=0.0)),
|
||||
('m1_8_flux', models.FloatField(default=0.0)),
|
||||
('m1_8_flux_error', models.FloatField(default=0.0)),
|
||||
('m2_8_flux', models.FloatField(default=0.0)),
|
||||
('m2_8_flux_error', models.FloatField(default=0.0)),
|
||||
('ep_1_flux', models.FloatField(default=0.0)),
|
||||
('ep_1_flux_error', models.FloatField(default=0.0)),
|
||||
('ep_2_flux', models.FloatField(default=0.0)),
|
||||
('ep_2_flux_error', models.FloatField(default=0.0)),
|
||||
('ep_3_flux', models.FloatField(default=0.0)),
|
||||
('ep_3_flux_error', models.FloatField(default=0.0)),
|
||||
('sum_flag', models.IntegerField(default=0)),
|
||||
('sc_extent', models.FloatField(default=0.0)),
|
||||
('sc_ext_ml', models.FloatField(default=0.0)),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
'base_manager_name': 'objects',
|
||||
},
|
||||
bases=('heasarc.heasarcbase',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='TableColumn',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('name', models.CharField(blank=True, default='', max_length=36)),
|
||||
('tdat_type', models.CharField(blank=True, default='', max_length=200)),
|
||||
('description', models.CharField(blank=True, default='', max_length=120)),
|
||||
('table', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='heasarc.HeasarcTable')),
|
||||
],
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='HeasarcObjectClass',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('class_name', models.CharField(blank=True, default='', max_length=120)),
|
||||
('class_id', models.IntegerField(default=0)),
|
||||
('table', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='heasarc.HeasarcTable')),
|
||||
],
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='HeasarcXrayMaster',
|
||||
fields=[
|
||||
('heasarcbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='heasarc.HeasarcBase')),
|
||||
('database_table', models.CharField(blank=True, default='', max_length=120)),
|
||||
('count_rate', models.FloatField(default=0.0)),
|
||||
('count_rate_error', models.FloatField(default=0.0)),
|
||||
('flux', models.FloatField(default=0.0)),
|
||||
('exposure', models.FloatField(default=0.0)),
|
||||
('class_id', models.IntegerField(default=0)),
|
||||
('observatory', models.CharField(blank=True, default='', max_length=50)),
|
||||
('object_class', models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to='heasarc.HeasarcObjectClass')),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
'base_manager_name': 'objects',
|
||||
},
|
||||
bases=('heasarc.heasarcbase',),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='HeasarcCHANMASTER',
|
||||
fields=[
|
||||
('heasarcbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='heasarc.HeasarcBase')),
|
||||
('obsid', models.CharField(blank=True, default='00000', max_length=5)),
|
||||
('status', models.CharField(blank=True, default='', max_length=20)),
|
||||
('time', models.FloatField(default=0.0)),
|
||||
('detector', models.CharField(blank=True, default='', max_length=6)),
|
||||
('grating', models.CharField(blank=True, default='', max_length=6)),
|
||||
('exposure', models.FloatField(default=0.0)),
|
||||
('obstype', models.CharField(blank=True, default='', max_length=3)),
|
||||
('pi', models.CharField(blank=True, default='', max_length=40)),
|
||||
('cycle', models.IntegerField(default=0)),
|
||||
('proposal', models.CharField(blank=True, default='', max_length=8)),
|
||||
('public_date', models.IntegerField(default=0)),
|
||||
('sequence_number', models.CharField(blank=True, default='000000', max_length=6)),
|
||||
('data_mode', models.CharField(blank=True, default='', max_length=15)),
|
||||
('category', models.CharField(blank=True, default='', max_length=50)),
|
||||
('class_id', models.IntegerField(default=0)),
|
||||
('object_class', models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to='heasarc.HeasarcObjectClass')),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
'base_manager_name': 'objects',
|
||||
},
|
||||
bases=('heasarc.heasarcbase',),
|
||||
),
|
||||
]
|
18
heasarc/migrations/0002_heasarcbase_erosita_flux.py
Normal file
18
heasarc/migrations/0002_heasarcbase_erosita_flux.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-24 10:13
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='heasarcbase',
|
||||
name='erosita_flux',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
]
|
21
heasarc/migrations/0003_rosatexpmap.py
Normal file
21
heasarc/migrations/0003_rosatexpmap.py
Normal file
@@ -0,0 +1,21 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-29 13:38
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0002_heasarcbase_erosita_flux'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='RosatExpMap',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('healpix', models.BigIntegerField(db_index=True, default=0)),
|
||||
('exposure', models.FloatField(default=0.0)),
|
||||
],
|
||||
),
|
||||
]
|
23
heasarc/migrations/0004_auto_20200130_1239.py
Normal file
23
heasarc/migrations/0004_auto_20200130_1239.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-30 09:39
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0003_rosatexpmap'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='heasarccsc',
|
||||
name='s_flux_ap',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='heasarccsc',
|
||||
name='s_flux_ap_hi',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
]
|
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 2.2.6 on 2020-01-30 15:08
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0004_auto_20200130_1239'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='heasarcrass2rxs',
|
||||
name='detection_likelihood',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
]
|
18
heasarc/migrations/0006_heasarcbase_healpix_plate.py
Normal file
18
heasarc/migrations/0006_heasarcbase_healpix_plate.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 2.2.6 on 2020-02-12 09:49
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0005_heasarcrass2rxs_detection_likelihood'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='heasarcbase',
|
||||
name='healpix_plate',
|
||||
field=models.PositiveIntegerField(db_index=True, default=0),
|
||||
),
|
||||
]
|
29
heasarc/migrations/0007_heasarcintegral9.py
Normal file
29
heasarc/migrations/0007_heasarcintegral9.py
Normal file
@@ -0,0 +1,29 @@
|
||||
# Generated by Django 2.2.6 on 2020-02-12 10:00
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0006_heasarcbase_healpix_plate'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='HeasarcIntegral9',
|
||||
fields=[
|
||||
('heasarcbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='heasarc.HeasarcBase')),
|
||||
('source_type', models.CharField(blank=True, default='', max_length=15)),
|
||||
('flux', models.FloatField(default=0.0)),
|
||||
('flux_error', models.FloatField(default=0.0)),
|
||||
('class_id', models.IntegerField(default=0)),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
'base_manager_name': 'objects',
|
||||
},
|
||||
bases=('heasarc.heasarcbase',),
|
||||
),
|
||||
]
|
19
heasarc/migrations/0008_heasarcintegral9_object_class.py
Normal file
19
heasarc/migrations/0008_heasarcintegral9_object_class.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# Generated by Django 2.2.6 on 2020-02-12 10:08
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0007_heasarcintegral9'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='heasarcintegral9',
|
||||
name='object_class',
|
||||
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to='heasarc.HeasarcObjectClass'),
|
||||
),
|
||||
]
|
18
heasarc/migrations/0009_auto_20200212_1850.py
Normal file
18
heasarc/migrations/0009_auto_20200212_1850.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 2.2.6 on 2020-02-12 15:50
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0008_heasarcintegral9_object_class'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='heasarcbase',
|
||||
name='healpix_plate',
|
||||
field=models.IntegerField(db_index=True, default=0),
|
||||
),
|
||||
]
|
18
heasarc/migrations/0010_auto_20200212_1851.py
Normal file
18
heasarc/migrations/0010_auto_20200212_1851.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 2.2.6 on 2020-02-12 15:51
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0009_auto_20200212_1850'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='heasarcbase',
|
||||
name='healpix_plate',
|
||||
field=models.PositiveIntegerField(db_index=True, default=0),
|
||||
),
|
||||
]
|
17
heasarc/migrations/0011_remove_heasarcbase_healpix_plate.py
Normal file
17
heasarc/migrations/0011_remove_heasarcbase_healpix_plate.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# Generated by Django 2.2.6 on 2020-02-12 15:52
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0010_auto_20200212_1851'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='heasarcbase',
|
||||
name='healpix_plate',
|
||||
),
|
||||
]
|
18
heasarc/migrations/0012_heasarcbase_healpix_plate.py
Normal file
18
heasarc/migrations/0012_heasarcbase_healpix_plate.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 2.2.6 on 2020-02-12 15:52
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0011_remove_heasarcbase_healpix_plate'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='heasarcbase',
|
||||
name='healpix_plate',
|
||||
field=models.IntegerField(db_index=True, default=0),
|
||||
),
|
||||
]
|
27
heasarc/migrations/0013_heasarcintrefcat.py
Normal file
27
heasarc/migrations/0013_heasarcintrefcat.py
Normal file
@@ -0,0 +1,27 @@
|
||||
# Generated by Django 2.2.6 on 2020-02-13 16:22
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0012_heasarcbase_healpix_plate'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='HeasarcIntRefCat',
|
||||
fields=[
|
||||
('heasarcbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='heasarc.HeasarcBase')),
|
||||
('class_id', models.IntegerField(default=0)),
|
||||
('object_class', models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to='heasarc.HeasarcObjectClass')),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
'base_manager_name': 'objects',
|
||||
},
|
||||
bases=('heasarc.heasarcbase',),
|
||||
),
|
||||
]
|
30
heasarc/migrations/0014_greensnr.py
Normal file
30
heasarc/migrations/0014_greensnr.py
Normal file
@@ -0,0 +1,30 @@
|
||||
# Generated by Django 2.2.6 on 2020-02-14 10:28
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0013_heasarcintrefcat'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='GreenSNR',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('healpix_plate', models.IntegerField(db_index=True, default=0)),
|
||||
('ra', models.FloatField(default=0.0)),
|
||||
('dec', models.FloatField(default=0.0)),
|
||||
('lii', models.FloatField(default=0.0)),
|
||||
('bii', models.FloatField(default=0.0)),
|
||||
('MajDiam', models.FloatField(default=0.0)),
|
||||
('MinDiam', models.FloatField(default=0.0)),
|
||||
('snrtype', models.CharField(blank=True, default='', max_length=2)),
|
||||
('SpIndex', models.FloatField(default=0.0)),
|
||||
('uSpIndex', models.CharField(blank=True, default='', max_length=2)),
|
||||
('Names', models.CharField(blank=True, default='', max_length=26)),
|
||||
],
|
||||
),
|
||||
]
|
18
heasarc/migrations/0015_greensnr_name.py
Normal file
18
heasarc/migrations/0015_greensnr_name.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 2.2.6 on 2020-02-14 10:41
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0014_greensnr'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='greensnr',
|
||||
name='name',
|
||||
field=models.CharField(blank=True, default='', max_length=11),
|
||||
),
|
||||
]
|
34
heasarc/migrations/0016_heasarcswiftbat105m.py
Normal file
34
heasarc/migrations/0016_heasarcswiftbat105m.py
Normal file
@@ -0,0 +1,34 @@
|
||||
# Generated by Django 2.2.6 on 2020-03-06 08:41
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0015_greensnr_name'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='HeasarcSwiftBAT105m',
|
||||
fields=[
|
||||
('heasarcbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='heasarc.HeasarcBase')),
|
||||
('snr', models.FloatField(default=0.0)),
|
||||
('counterpart_name', models.CharField(blank=True, default='', max_length=30)),
|
||||
('flux', models.FloatField(default=0.0)),
|
||||
('flux_lo', models.FloatField(default=0.0)),
|
||||
('flux_hi', models.FloatField(default=0.0)),
|
||||
('redshift', models.FloatField(default=0.0)),
|
||||
('lum', models.FloatField(default=0.0)),
|
||||
('class_id', models.IntegerField(default=0)),
|
||||
('otype', models.CharField(blank=True, default='', max_length=25)),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
'base_manager_name': 'objects',
|
||||
},
|
||||
bases=('heasarc.heasarcbase',),
|
||||
),
|
||||
]
|
18
heasarc/migrations/0017_heasarcswiftbat105m_ref_id.py
Normal file
18
heasarc/migrations/0017_heasarcswiftbat105m_ref_id.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 2.2.6 on 2020-03-06 08:45
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0016_heasarcswiftbat105m'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='heasarcswiftbat105m',
|
||||
name='ref_id',
|
||||
field=models.IntegerField(default=0),
|
||||
),
|
||||
]
|
34
heasarc/migrations/0018_heasarcxteasscat.py
Normal file
34
heasarc/migrations/0018_heasarcxteasscat.py
Normal file
@@ -0,0 +1,34 @@
|
||||
# Generated by Django 2.2.6 on 2020-03-18 12:10
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0017_heasarcswiftbat105m_ref_id'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='HeasarcXTEASSCAT',
|
||||
fields=[
|
||||
('heasarcbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='heasarc.HeasarcBase')),
|
||||
('rate1', models.FloatField(default=0.0)),
|
||||
('rate1_error', models.FloatField(default=0.0)),
|
||||
('rate2', models.FloatField(default=0.0)),
|
||||
('rate2_error', models.FloatField(default=0.0)),
|
||||
('alt_names', models.CharField(blank=True, default='', max_length=43)),
|
||||
('broad_type', models.CharField(blank=True, default='', max_length=5)),
|
||||
('detailed_type', models.CharField(blank=True, default='', max_length=6)),
|
||||
('redshift', models.FloatField(default=0.0)),
|
||||
('class_id', models.IntegerField(default=0)),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
'base_manager_name': 'objects',
|
||||
},
|
||||
bases=('heasarc.heasarcbase',),
|
||||
),
|
||||
]
|
34
heasarc/migrations/0019_heasarcmaxigschgl.py
Normal file
34
heasarc/migrations/0019_heasarcmaxigschgl.py
Normal file
@@ -0,0 +1,34 @@
|
||||
# Generated by Django 2.2.6 on 2020-03-25 11:05
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0018_heasarcxteasscat'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='HeasarcMAXIGSCHGL',
|
||||
fields=[
|
||||
('heasarcbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='heasarc.HeasarcBase')),
|
||||
('hardness_ratio', models.FloatField(default=0.0)),
|
||||
('hardness_ratio_error', models.FloatField(default=0.0)),
|
||||
('hb_flux', models.FloatField(default=0.0)),
|
||||
('hb_flux_error', models.FloatField(default=0.0)),
|
||||
('hb_significance', models.FloatField(default=0.0)),
|
||||
('ctrpart_name', models.CharField(blank=True, default='', max_length=28)),
|
||||
('class_id', models.IntegerField(default=0)),
|
||||
('redshift', models.FloatField(default=0.0)),
|
||||
('object_class', models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to='heasarc.HeasarcObjectClass')),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
'base_manager_name': 'objects',
|
||||
},
|
||||
bases=('heasarc.heasarcbase',),
|
||||
),
|
||||
]
|
18
heasarc/migrations/0020_rosatexpmap_detlimflux.py
Normal file
18
heasarc/migrations/0020_rosatexpmap_detlimflux.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 2.2.6 on 2020-05-21 12:51
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0019_heasarcmaxigschgl'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='rosatexpmap',
|
||||
name='detlimflux',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
]
|
21
heasarc/migrations/0021_heasarcsimpleclass.py
Normal file
21
heasarc/migrations/0021_heasarcsimpleclass.py
Normal file
@@ -0,0 +1,21 @@
|
||||
# Generated by Django 2.2.6 on 2020-06-19 19:04
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0020_rosatexpmap_detlimflux'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='HeasarcSimpleClass',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('class_name', models.CharField(blank=True, default='', max_length=120)),
|
||||
('class_id', models.IntegerField(default=0)),
|
||||
],
|
||||
),
|
||||
]
|
27
heasarc/migrations/0022_heasarcxmmsl2.py
Normal file
27
heasarc/migrations/0022_heasarcxmmsl2.py
Normal file
@@ -0,0 +1,27 @@
|
||||
# Generated by Django 3.0.8 on 2020-07-09 13:44
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0021_heasarcsimpleclass'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='HeasarcXMMSL2',
|
||||
fields=[
|
||||
('heasarcbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='heasarc.HeasarcBase')),
|
||||
('flux_b8', models.FloatField(default=0.0)),
|
||||
('flux_b7', models.FloatField(default=0.0)),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
'base_manager_name': 'objects',
|
||||
},
|
||||
bases=('heasarc.heasarcbase',),
|
||||
),
|
||||
]
|
24
heasarc/migrations/0023_auto_20200709_1655.py
Normal file
24
heasarc/migrations/0023_auto_20200709_1655.py
Normal file
@@ -0,0 +1,24 @@
|
||||
# Generated by Django 3.0.8 on 2020-07-09 13:55
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0022_heasarcxmmsl2'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='heasarcxmmsl2',
|
||||
name='class_id',
|
||||
field=models.IntegerField(default=0),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='heasarcxmmsl2',
|
||||
name='object_class',
|
||||
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to='heasarc.HeasarcObjectClass'),
|
||||
),
|
||||
]
|
27
heasarc/migrations/0024_heasarc3maxi.py
Normal file
27
heasarc/migrations/0024_heasarc3maxi.py
Normal file
@@ -0,0 +1,27 @@
|
||||
# Generated by Django 3.0.8 on 2020-07-11 09:04
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0023_auto_20200709_1655'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Heasarc3MAXI',
|
||||
fields=[
|
||||
('heasarcbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='heasarc.HeasarcBase')),
|
||||
('sign', models.FloatField(default=0.0)),
|
||||
('flux', models.FloatField(default=0.0)),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
'base_manager_name': 'objects',
|
||||
},
|
||||
bases=('heasarc.heasarcbase',),
|
||||
),
|
||||
]
|
18
heasarc/migrations/0025_rosatexpmap_nh.py
Normal file
18
heasarc/migrations/0025_rosatexpmap_nh.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 3.0.8 on 2020-11-02 09:52
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0024_heasarc3maxi'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='rosatexpmap',
|
||||
name='nH',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
]
|
27
heasarc/migrations/0026_heasarcintegral2020.py
Normal file
27
heasarc/migrations/0026_heasarcintegral2020.py
Normal file
@@ -0,0 +1,27 @@
|
||||
# Generated by Django 3.0.8 on 2020-11-10 14:35
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0025_rosatexpmap_nh'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='HeasarcIntegral2020',
|
||||
fields=[
|
||||
('heasarcbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='heasarc.HeasarcBase')),
|
||||
('flux', models.FloatField(default=0.0)),
|
||||
('flux_error', models.FloatField(default=0.0)),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
'base_manager_name': 'objects',
|
||||
},
|
||||
bases=('heasarc.heasarcbase',),
|
||||
),
|
||||
]
|
18
heasarc/migrations/0027_heasarcintegral2020_sign.py
Normal file
18
heasarc/migrations/0027_heasarcintegral2020_sign.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 3.0.8 on 2020-11-10 14:47
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0026_heasarcintegral2020'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='heasarcintegral2020',
|
||||
name='sign',
|
||||
field=models.FloatField(default=0.0),
|
||||
),
|
||||
]
|
18
heasarc/migrations/0028_heasarcintegral2020_ref_id.py
Normal file
18
heasarc/migrations/0028_heasarcintegral2020_ref_id.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 3.0.8 on 2020-11-10 14:50
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0027_heasarcintegral2020_sign'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='heasarcintegral2020',
|
||||
name='ref_id',
|
||||
field=models.IntegerField(default=0),
|
||||
),
|
||||
]
|
19
heasarc/migrations/0029_heasarc4xmmdr9_gaia.py
Normal file
19
heasarc/migrations/0029_heasarc4xmmdr9_gaia.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# Generated by Django 3.0.8 on 2021-02-11 15:38
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0045_auto_20200804_1707'),
|
||||
('heasarc', '0028_heasarcintegral2020_ref_id'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='heasarc4xmmdr9',
|
||||
name='gaia',
|
||||
field=models.ManyToManyField(to='astrobasis.GAIADR2'),
|
||||
),
|
||||
]
|
18
heasarc/migrations/0030_auto_20210211_1848.py
Normal file
18
heasarc/migrations/0030_auto_20210211_1848.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 3.0.8 on 2021-02-11 15:48
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0029_heasarc4xmmdr9_gaia'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RenameField(
|
||||
model_name='heasarc4xmmdr9',
|
||||
old_name='POSERR',
|
||||
new_name='radec_error',
|
||||
),
|
||||
]
|
67
heasarc/migrations/0031_heasarc4xmmdr10.py
Normal file
67
heasarc/migrations/0031_heasarc4xmmdr10.py
Normal file
@@ -0,0 +1,67 @@
|
||||
# Generated by Django 3.0.8 on 2021-02-12 09:55
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0030_auto_20210211_1848'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Heasarc4XMMDR10',
|
||||
fields=[
|
||||
('heasarcbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='heasarc.HeasarcBase')),
|
||||
('SRCID', models.BigIntegerField(default=0)),
|
||||
('radec_error', models.FloatField(default=0.0)),
|
||||
('DET_ML', models.FloatField(default=0.0)),
|
||||
('EP_1_FLUX', models.FloatField(default=0.0)),
|
||||
('EP_1_FLUX_ERR', models.FloatField(default=0.0)),
|
||||
('EP_2_FLUX', models.FloatField(default=0.0)),
|
||||
('EP_2_FLUX_ERR', models.FloatField(default=0.0)),
|
||||
('EP_3_FLUX', models.FloatField(default=0.0)),
|
||||
('EP_3_FLUX_ERR', models.FloatField(default=0.0)),
|
||||
('EP_4_FLUX', models.FloatField(default=0.0)),
|
||||
('EP_4_FLUX_ERR', models.FloatField(default=0.0)),
|
||||
('EP_5_FLUX', models.FloatField(default=0.0)),
|
||||
('EP_5_FLUX_ERR', models.FloatField(default=0.0)),
|
||||
('EP_8_FLUX', models.FloatField(default=0.0)),
|
||||
('EP_8_FLUX_ERR', models.FloatField(default=0.0)),
|
||||
('EP_9_FLUX', models.FloatField(default=0.0)),
|
||||
('EP_9_FLUX_ERR', models.FloatField(default=0.0)),
|
||||
('HR1', models.FloatField(default=0.0)),
|
||||
('HR1_ERR', models.FloatField(default=0.0)),
|
||||
('HR2', models.FloatField(default=0.0)),
|
||||
('HR2_ERR', models.FloatField(default=0.0)),
|
||||
('HR3', models.FloatField(default=0.0)),
|
||||
('HR3_ERR', models.FloatField(default=0.0)),
|
||||
('HR4', models.FloatField(default=0.0)),
|
||||
('HR4_ERR', models.FloatField(default=0.0)),
|
||||
('EXTENT', models.FloatField(default=0.0)),
|
||||
('EXT_ERR', models.FloatField(default=0.0)),
|
||||
('EXT_ML', models.FloatField(default=0.0)),
|
||||
('CHI2PROB', models.FloatField(default=0.0)),
|
||||
('FVAR', models.FloatField(default=0.0)),
|
||||
('FVARERR', models.FloatField(default=0.0)),
|
||||
('VAR_FLAG', models.IntegerField(default=0)),
|
||||
('SUM_FLAG', models.IntegerField(default=0)),
|
||||
('EP_8_FMIN', models.FloatField(default=0.0)),
|
||||
('EP_8_FMIN_ERR', models.FloatField(default=0.0)),
|
||||
('EP_8_FMAX', models.FloatField(default=0.0)),
|
||||
('EP_8_FMAX_ERR', models.FloatField(default=0.0)),
|
||||
('MJD_FIRST', models.IntegerField(default=0)),
|
||||
('MJD_LAST', models.IntegerField(default=0)),
|
||||
('N_DETECTIONS', models.IntegerField(default=0)),
|
||||
('CONFUSED', models.CharField(blank=True, default='', max_length=1)),
|
||||
('WEBPAGE_URL', models.CharField(blank=True, default='', max_length=100)),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
'base_manager_name': 'objects',
|
||||
},
|
||||
bases=('heasarc.heasarcbase',),
|
||||
),
|
||||
]
|
19
heasarc/migrations/0032_heasarc4xmmdr10_gaia.py
Normal file
19
heasarc/migrations/0032_heasarc4xmmdr10_gaia.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# Generated by Django 3.0.8 on 2021-04-05 12:22
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0053_remove_gaiadr3_ref_epoch'),
|
||||
('heasarc', '0031_heasarc4xmmdr10'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='heasarc4xmmdr10',
|
||||
name='gaia',
|
||||
field=models.ManyToManyField(to='astrobasis.GAIADR3'),
|
||||
),
|
||||
]
|
27
heasarc/migrations/0033_heasarcmaxi7yr.py
Normal file
27
heasarc/migrations/0033_heasarcmaxi7yr.py
Normal file
@@ -0,0 +1,27 @@
|
||||
# Generated by Django 3.0.8 on 2021-06-30 11:16
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0032_heasarc4xmmdr10_gaia'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='HeasarcMAXI7YR',
|
||||
fields=[
|
||||
('heasarcbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='heasarc.HeasarcBase')),
|
||||
('sign', models.FloatField(default=0.0)),
|
||||
('flux', models.FloatField(default=0.0)),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
'base_manager_name': 'objects',
|
||||
},
|
||||
bases=('heasarc.heasarcbase',),
|
||||
),
|
||||
]
|
27
heasarc/migrations/0034_heasarc4fgl.py
Normal file
27
heasarc/migrations/0034_heasarc4fgl.py
Normal file
@@ -0,0 +1,27 @@
|
||||
# Generated by Django 3.0.8 on 2021-07-01 14:24
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0033_heasarcmaxi7yr'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Heasarc4FGL',
|
||||
fields=[
|
||||
('heasarcbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='heasarc.HeasarcBase')),
|
||||
('sign', models.FloatField(default=0.0)),
|
||||
('flux', models.FloatField(default=0.0)),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
'base_manager_name': 'objects',
|
||||
},
|
||||
bases=('heasarc.heasarcbase',),
|
||||
),
|
||||
]
|
23
heasarc/migrations/0035_auto_20210821_1032.py
Normal file
23
heasarc/migrations/0035_auto_20210821_1032.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# Generated by Django 3.0.8 on 2021-08-21 07:32
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0034_heasarc4fgl'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='heasarcxmmsl2',
|
||||
name='obsid',
|
||||
field=models.CharField(blank=True, default='', max_length=10),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='heasarcxmmsl2',
|
||||
name='sourcenum',
|
||||
field=models.IntegerField(default=0),
|
||||
),
|
||||
]
|
48
heasarc/migrations/0036_auto_20210826_1325.py
Normal file
48
heasarc/migrations/0036_auto_20210826_1325.py
Normal file
@@ -0,0 +1,48 @@
|
||||
# Generated by Django 3.0.8 on 2021-08-26 10:25
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0035_auto_20210821_1032'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='heasarcxmmsl2',
|
||||
name='flag_comment',
|
||||
field=models.CharField(blank=True, default='', max_length=40),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='heasarcxmmsl2',
|
||||
name='ver_false',
|
||||
field=models.CharField(blank=True, default='', max_length=1),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='heasarcxmmsl2',
|
||||
name='ver_halo',
|
||||
field=models.CharField(blank=True, default='', max_length=1),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='heasarcxmmsl2',
|
||||
name='ver_hibgnd',
|
||||
field=models.CharField(blank=True, default='', max_length=1),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='heasarcxmmsl2',
|
||||
name='ver_inext',
|
||||
field=models.CharField(blank=True, default='', max_length=1),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='heasarcxmmsl2',
|
||||
name='ver_nredg',
|
||||
field=models.CharField(blank=True, default='', max_length=1),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='heasarcxmmsl2',
|
||||
name='ver_psusp',
|
||||
field=models.CharField(blank=True, default='', max_length=1),
|
||||
),
|
||||
]
|
48
heasarc/migrations/0037_auto_20211229_1259.py
Normal file
48
heasarc/migrations/0037_auto_20211229_1259.py
Normal file
@@ -0,0 +1,48 @@
|
||||
# Generated by Django 3.2.10 on 2021-12-29 09:59
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0036_auto_20210826_1325'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='greensnr',
|
||||
name='id',
|
||||
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='heasarcbase',
|
||||
name='id',
|
||||
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='heasarcobjectclass',
|
||||
name='id',
|
||||
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='heasarcsimpleclass',
|
||||
name='id',
|
||||
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='heasarctable',
|
||||
name='id',
|
||||
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='rosatexpmap',
|
||||
name='id',
|
||||
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='tablecolumn',
|
||||
name='id',
|
||||
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
|
||||
),
|
||||
]
|
17
heasarc/migrations/0038_remove_heasarc4xmmdr9_gaia.py
Normal file
17
heasarc/migrations/0038_remove_heasarc4xmmdr9_gaia.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# Generated by Django 3.2.10 on 2022-01-12 09:06
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0037_auto_20211229_1259'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='heasarc4xmmdr9',
|
||||
name='gaia',
|
||||
),
|
||||
]
|
17
heasarc/migrations/0039_remove_heasarc4xmmdr10_gaia.py
Normal file
17
heasarc/migrations/0039_remove_heasarc4xmmdr10_gaia.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# Generated by Django 3.2.12 on 2022-03-05 14:45
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0038_remove_heasarc4xmmdr9_gaia'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='heasarc4xmmdr10',
|
||||
name='gaia',
|
||||
),
|
||||
]
|
25
heasarc/migrations/0040_auto_20220305_1747.py
Normal file
25
heasarc/migrations/0040_auto_20220305_1747.py
Normal file
@@ -0,0 +1,25 @@
|
||||
# Generated by Django 3.2.12 on 2022-03-05 14:47
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0055_auto_20211229_1259'),
|
||||
('heasarc', '0039_remove_heasarc4xmmdr10_gaia'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='heasarcbase',
|
||||
name='gaia3',
|
||||
field=models.ManyToManyField(to='astrobasis.GAIADR3'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='heasarcbase',
|
||||
name='gaia3_primary',
|
||||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='heasarcbase_primary', to='astrobasis.gaiadr3'),
|
||||
),
|
||||
]
|
25
heasarc/migrations/0041_auto_20220317_1603.py
Normal file
25
heasarc/migrations/0041_auto_20220317_1603.py
Normal file
@@ -0,0 +1,25 @@
|
||||
# Generated by Django 3.2.12 on 2022-03-17 13:03
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0059_auto_20220315_1125'),
|
||||
('heasarc', '0040_auto_20220305_1747'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='heasarcbase',
|
||||
name='glimpse',
|
||||
field=models.ManyToManyField(to='astrobasis.GLIMPSE'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='heasarcbase',
|
||||
name='glimpse_primary',
|
||||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='heasarcbase_primary', to='astrobasis.glimpse'),
|
||||
),
|
||||
]
|
17
heasarc/migrations/0042_alter_heasarcbase_options.py
Normal file
17
heasarc/migrations/0042_alter_heasarcbase_options.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# Generated by Django 3.2.12 on 2022-03-23 14:41
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0041_auto_20220317_1603'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='heasarcbase',
|
||||
options={'ordering': ['-id']},
|
||||
),
|
||||
]
|
21
heasarc/migrations/0043_auto_20220329_2223.py
Normal file
21
heasarc/migrations/0043_auto_20220329_2223.py
Normal file
@@ -0,0 +1,21 @@
|
||||
# Generated by Django 3.2.12 on 2022-03-29 19:23
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0042_alter_heasarcbase_options'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='heasarcbase',
|
||||
name='glimpse',
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='heasarcbase',
|
||||
name='glimpse_primary',
|
||||
),
|
||||
]
|
25
heasarc/migrations/0044_auto_20220330_1308.py
Normal file
25
heasarc/migrations/0044_auto_20220330_1308.py
Normal file
@@ -0,0 +1,25 @@
|
||||
# Generated by Django 3.2.12 on 2022-03-30 10:08
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0064_auto_20220325_1752'),
|
||||
('heasarc', '0043_auto_20220329_2223'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='heasarcbase',
|
||||
name='vlass',
|
||||
field=models.ManyToManyField(to='astrobasis.VLASS'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='heasarcbase',
|
||||
name='vlass_primary',
|
||||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='heasarcbase_primary', to='astrobasis.vlass'),
|
||||
),
|
||||
]
|
25
heasarc/migrations/0045_auto_20220404_1109.py
Normal file
25
heasarc/migrations/0045_auto_20220404_1109.py
Normal file
@@ -0,0 +1,25 @@
|
||||
# Generated by Django 3.2.12 on 2022-04-04 08:09
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0066_alter_twomass_name'),
|
||||
('heasarc', '0044_auto_20220330_1308'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='heasarcbase',
|
||||
name='glimpse',
|
||||
field=models.ManyToManyField(to='astrobasis.GLIMPSE'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='heasarcbase',
|
||||
name='glimpse_primary',
|
||||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='heasarcbase_primary', to='astrobasis.glimpse'),
|
||||
),
|
||||
]
|
28
heasarc/migrations/0046_heasarcusercat.py
Normal file
28
heasarc/migrations/0046_heasarcusercat.py
Normal file
@@ -0,0 +1,28 @@
|
||||
# Generated by Django 3.2.12 on 2022-04-13 14:44
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0045_auto_20220404_1109'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='HeasarcUserCat',
|
||||
fields=[
|
||||
('heasarcbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='heasarc.heasarcbase')),
|
||||
('bibcode', models.CharField(blank=True, default='', max_length=36)),
|
||||
('notes', models.TextField(blank=True, max_length=2000, null=True, verbose_name='notes')),
|
||||
('autoname', models.BooleanField(default=False, null=True)),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
'base_manager_name': 'objects',
|
||||
},
|
||||
bases=('heasarc.heasarcbase',),
|
||||
),
|
||||
]
|
18
heasarc/migrations/0047_alter_heasarcusercat_autoname.py
Normal file
18
heasarc/migrations/0047_alter_heasarcusercat_autoname.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 3.2.12 on 2022-04-14 08:55
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0046_heasarcusercat'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='heasarcusercat',
|
||||
name='autoname',
|
||||
field=models.BooleanField(default=False, help_text='Generate IAU name of the component in the form NAME JHHMMSS.s+DDMMSS, <br>where NAME is taken from the corresponding field above.'),
|
||||
),
|
||||
]
|
18
heasarc/migrations/0048_alter_heasarcusercat_autoname.py
Normal file
18
heasarc/migrations/0048_alter_heasarcusercat_autoname.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 3.2.13 on 2022-04-15 08:15
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0047_alter_heasarcusercat_autoname'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='heasarcusercat',
|
||||
name='autoname',
|
||||
field=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.'),
|
||||
),
|
||||
]
|
25
heasarc/migrations/0049_auto_20220421_1450.py
Normal file
25
heasarc/migrations/0049_auto_20220421_1450.py
Normal file
@@ -0,0 +1,25 @@
|
||||
# Generated by Django 3.2.13 on 2022-04-21 11:50
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0070_alter_twomass_options'),
|
||||
('heasarc', '0048_alter_heasarcusercat_autoname'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='heasarcbase',
|
||||
name='twomass',
|
||||
field=models.ManyToManyField(to='astrobasis.TwoMASS'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='heasarcbase',
|
||||
name='twomass_primary',
|
||||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='heasarcbase_primary', to='astrobasis.twomass'),
|
||||
),
|
||||
]
|
25
heasarc/migrations/0050_auto_20220428_1809.py
Normal file
25
heasarc/migrations/0050_auto_20220428_1809.py
Normal file
@@ -0,0 +1,25 @@
|
||||
# Generated by Django 3.2.13 on 2022-04-28 15:09
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0070_alter_twomass_options'),
|
||||
('heasarc', '0049_auto_20220421_1450'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='heasarcbase',
|
||||
name='allwise',
|
||||
field=models.ManyToManyField(to='astrobasis.AllWise'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='heasarcbase',
|
||||
name='allwise_primary',
|
||||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='heasarcbase_primary', to='astrobasis.allwise'),
|
||||
),
|
||||
]
|
19
heasarc/migrations/0051_heasarcbase_usercat.py
Normal file
19
heasarc/migrations/0051_heasarcbase_usercat.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# Generated by Django 3.2.13 on 2022-06-10 15:29
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('astrobasis', '0073_astrobasisusercat'),
|
||||
('heasarc', '0050_auto_20220428_1809'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='heasarcbase',
|
||||
name='usercat',
|
||||
field=models.ManyToManyField(to='astrobasis.AstroBasisUserCat'),
|
||||
),
|
||||
]
|
20
heasarc/migrations/0052_heasarcbase_ads.py
Normal file
20
heasarc/migrations/0052_heasarcbase_ads.py
Normal file
@@ -0,0 +1,20 @@
|
||||
# Generated by Django 3.2.13 on 2022-11-16 14:23
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('nasa', '0010_auto_20220624_1839'),
|
||||
('heasarc', '0051_heasarcbase_usercat'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='heasarcbase',
|
||||
name='ads',
|
||||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='heasarcbase_primary', to='nasa.ads'),
|
||||
),
|
||||
]
|
67
heasarc/migrations/0053_heasarc4xmmdr12.py
Normal file
67
heasarc/migrations/0053_heasarc4xmmdr12.py
Normal file
@@ -0,0 +1,67 @@
|
||||
# Generated by Django 3.2.13 on 2022-11-21 14:54
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('heasarc', '0052_heasarcbase_ads'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Heasarc4XMMDR12',
|
||||
fields=[
|
||||
('heasarcbase_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='heasarc.heasarcbase')),
|
||||
('SRCID', models.BigIntegerField(default=0)),
|
||||
('radec_error', models.FloatField(default=0.0)),
|
||||
('DET_ML', models.FloatField(default=0.0)),
|
||||
('EP_1_FLUX', models.FloatField(default=0.0)),
|
||||
('EP_1_FLUX_ERR', models.FloatField(default=0.0)),
|
||||
('EP_2_FLUX', models.FloatField(default=0.0)),
|
||||
('EP_2_FLUX_ERR', models.FloatField(default=0.0)),
|
||||
('EP_3_FLUX', models.FloatField(default=0.0)),
|
||||
('EP_3_FLUX_ERR', models.FloatField(default=0.0)),
|
||||
('EP_4_FLUX', models.FloatField(default=0.0)),
|
||||
('EP_4_FLUX_ERR', models.FloatField(default=0.0)),
|
||||
('EP_5_FLUX', models.FloatField(default=0.0)),
|
||||
('EP_5_FLUX_ERR', models.FloatField(default=0.0)),
|
||||
('EP_8_FLUX', models.FloatField(default=0.0)),
|
||||
('EP_8_FLUX_ERR', models.FloatField(default=0.0)),
|
||||
('EP_9_FLUX', models.FloatField(default=0.0)),
|
||||
('EP_9_FLUX_ERR', models.FloatField(default=0.0)),
|
||||
('HR1', models.FloatField(default=0.0)),
|
||||
('HR1_ERR', models.FloatField(default=0.0)),
|
||||
('HR2', models.FloatField(default=0.0)),
|
||||
('HR2_ERR', models.FloatField(default=0.0)),
|
||||
('HR3', models.FloatField(default=0.0)),
|
||||
('HR3_ERR', models.FloatField(default=0.0)),
|
||||
('HR4', models.FloatField(default=0.0)),
|
||||
('HR4_ERR', models.FloatField(default=0.0)),
|
||||
('EXTENT', models.FloatField(default=0.0)),
|
||||
('EXT_ERR', models.FloatField(default=0.0)),
|
||||
('EXT_ML', models.FloatField(default=0.0)),
|
||||
('CHI2PROB', models.FloatField(default=0.0)),
|
||||
('FVAR', models.FloatField(default=0.0)),
|
||||
('FVARERR', models.FloatField(default=0.0)),
|
||||
('VAR_FLAG', models.IntegerField(default=0)),
|
||||
('SUM_FLAG', models.IntegerField(default=0)),
|
||||
('EP_8_FMIN', models.FloatField(default=0.0)),
|
||||
('EP_8_FMIN_ERR', models.FloatField(default=0.0)),
|
||||
('EP_8_FMAX', models.FloatField(default=0.0)),
|
||||
('EP_8_FMAX_ERR', models.FloatField(default=0.0)),
|
||||
('MJD_FIRST', models.IntegerField(default=0)),
|
||||
('MJD_LAST', models.IntegerField(default=0)),
|
||||
('N_DETECTIONS', models.IntegerField(default=0)),
|
||||
('CONFUSED', models.CharField(blank=True, default='', max_length=1)),
|
||||
('WEBPAGE_URL', models.CharField(blank=True, default='', max_length=100)),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
'base_manager_name': 'objects',
|
||||
},
|
||||
bases=('heasarc.heasarcbase',),
|
||||
),
|
||||
]
|
0
heasarc/migrations/__init__.py
Normal file
0
heasarc/migrations/__init__.py
Normal file
Reference in New Issue
Block a user