19 lines
600 B
Python
19 lines
600 B
Python
# Generated by Django 5.1.1 on 2024-09-12 11:40
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('GaiaDBInterface', '0002_gaiasource_healpix_nested_index_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='catalogfile',
|
|
name='status',
|
|
field=models.CharField(choices=[('PENDING', 'Pending'), ('IN_PROGRESS', 'In Progress'), ('INGESTED', 'Ingested'), ('INDEX_IN_PROGRESS', 'Index in progress'), ('INDEXED', 'Indexed')], default='PENDING', max_length=17),
|
|
),
|
|
]
|