Plain is headed towards 1.0! Subscribe for development updates →

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