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

@@ -11,10 +11,11 @@ class CatalogFile(models.Model):
('PENDING', 'Pending'),
('IN_PROGRESS', 'In Progress'),
('INGESTED', 'Ingested'),
('INDEX_IN_PROGRESS', 'Index in progress'),
('INDEXED', 'Indexed')
]
status = models.CharField(max_length=11, choices=STATUS_CHOICES, default='PENDING')
status = models.CharField(max_length=17, choices=STATUS_CHOICES, default='PENDING')
class GaiaSource(models.Model):