diff --git a/scipost_django/production/migrations/0008_alter_productionstream_status.py b/scipost_django/production/migrations/0008_alter_productionstream_status.py new file mode 100644 index 0000000000000000000000000000000000000000..0a396621394e742116c79b25ee5dd2100b2d8c5b --- /dev/null +++ b/scipost_django/production/migrations/0008_alter_productionstream_status.py @@ -0,0 +1,34 @@ +# Generated by Django 3.2.18 on 2023-07-06 14:01 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("production", "0007_auto_20230706_1502"), + ] + + operations = [ + migrations.AlterField( + model_name="productionstream", + name="status", + field=models.CharField( + choices=[ + ("initiated", "New Stream started"), + ("source_requested", "Source files requested"), + ("tasked", "Supervisor tasked officer with proofs production"), + ("produced", "Proofs have been produced"), + ("checked", "Proofs have been checked by Supervisor"), + ("sent", "Proofs sent to Authors"), + ("returned", "Proofs returned by Authors"), + ("corrected", "Corrections implemented"), + ("accepted", "Authors have accepted proofs"), + ("published", "Paper has been published"), + ("cited", "Cited people have been notified/invited to SciPost"), + ("completed", "Completed"), + ], + default="initiated", + max_length=32, + ), + ), + ]