added ORDER and NSIDE as arguments for the indexer script

This commit is contained in:
2024-09-12 15:52:38 +03:00
parent 3acef66a89
commit 84f373d590
3 changed files with 49 additions and 10 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.1.1 on 2024-09-12 11:40
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('GaiaDBInterface', '0002_gaiasource_healpix_nested_index_and_more'),
]
operations = [
migrations.AlterField(
model_name='catalogfile',
name='status',
field=models.CharField(choices=[('PENDING', 'Pending'), ('IN_PROGRESS', 'In Progress'), ('INGESTED', 'Ingested'), ('INDEX_IN_PROGRESS', 'Index in progress'), ('INDEXED', 'Indexed')], default='PENDING', max_length=17),
),
]