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:
@@ -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),
|
||||
),
|
||||
]
|
@@ -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',
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user