prototype indexer implementation

This commit is contained in:
2024-09-11 15:06:47 +03:00
parent 6df8af77df
commit 5fe96c3b86
4 changed files with 56 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
# Generated by Django 5.1.1 on 2024-09-11 11:13
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('GaiaDBInterface', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='gaiasource',
name='healpix_nested_index',
field=models.BigIntegerField(blank=True, null=True),
),
migrations.AddField(
model_name='gaiasource',
name='healpix_ring_index',
field=models.BigIntegerField(blank=True, null=True),
),
]