Plain is headed towards 1.0! Subscribe for development updates →

 1# Generated by Plain 5.0.dev20231229213240 on 2023-12-30 02:35
 2
 3from plain import models
 4from plain.models import migrations
 5
 6
 7class Migration(migrations.Migration):
 8    dependencies = [
 9        ("plainworker", "0006_rename_completed_at_jobresult_ended_at"),
10    ]
11
12    operations = [
13        migrations.AlterField(
14            model_name="jobresult",
15            name="status",
16            field=models.CharField(
17                blank=True,
18                choices=[
19                    ("", "Unknown"),
20                    ("PROCESSING", "Processing"),
21                    ("SUCCESSFUL", "Successful"),
22                    ("ERRORED", "Errored"),
23                ],
24                db_index=True,
25                default="",
26                max_length=20,
27            ),
28        ),
29    ]