Plain is headed towards 1.0! Subscribe for development updates →

 1# Generated by Plain 5.0.dev20240109202955 on 2024-01-09 21:36
 2
 3from plain import models
 4from plain.models import migrations
 5
 6
 7class Migration(migrations.Migration):
 8    dependencies = [
 9        ("plainworker", "0008_jobrequest_source_jobresult_source"),
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                    ("TIMED_OUT", "Timed out"),
24                ],
25                db_index=True,
26                default="",
27                max_length=20,
28            ),
29        ),
30    ]