removed boolean types for ring and nested indices. Made the indexer create both indexes at once as it is faster.

This commit is contained in:
2024-09-12 16:47:00 +03:00
parent 84f373d590
commit e5663e3c30
4 changed files with 78 additions and 24 deletions

View File

@@ -17,6 +17,7 @@ class CatalogFile(models.Model):
status = models.CharField(max_length=17, choices=STATUS_CHOICES, default='PENDING')
class GaiaSource(models.Model):
uuid = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)