more apps
This commit is contained in:
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)),
|
||||
],
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user