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

@@ -0,0 +1,23 @@
# Generated by Django 5.1.1 on 2024-09-12 13:24
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('GaiaDBInterface', '0003_alter_catalogfile_status'),
]
operations = [
migrations.AddField(
model_name='catalogfile',
name='nested_indexed',
field=models.BooleanField(default=False),
),
migrations.AddField(
model_name='catalogfile',
name='ring_indexed',
field=models.BooleanField(default=False),
),
]

View File

@@ -0,0 +1,21 @@
# Generated by Django 5.1.1 on 2024-09-12 13:42
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('GaiaDBInterface', '0004_catalogfile_nested_indexed_catalogfile_ring_indexed'),
]
operations = [
migrations.RemoveField(
model_name='catalogfile',
name='nested_indexed',
),
migrations.RemoveField(
model_name='catalogfile',
name='ring_indexed',
),
]