1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| # Generated by Django 5.1.9 on 2025-11-03 00:00
|
| from django.db import migrations, models
|
|
| class Migration(migrations.Migration):
|
| dependencies = [
| ('core', '0002_deletedrow'),
| ]
|
| operations = [
| migrations.AlterField(
| model_name='asyncmigrationstatus',
| name='status',
| field=models.CharField(
| choices=[
| ('SCHEDULED', 'Migration is scheduled but not yet started.'),
| ('STARTED', 'Migration is started or queued.'),
| ('IN PROGRESS', 'Migration is in progress. Check meta for job_id or status.'),
| ('FINISHED', 'Migration completed successfully.'),
| ('ERROR', 'Migration completed with errors. Check meta for more info.'),
| ],
| default=None,
| max_length=100,
| null=True,
| ),
| ),
| ]
|
|