From bd82b0c79f195955fd8836dfb7b7e7ec5e0376ac Mon Sep 17 00:00:00 2001
From: George Katsikas <giorgakis.katsikas@gmail.com>
Date: Thu, 6 Jul 2023 16:04:25 +0200
Subject: [PATCH] add migration for source files prod stream status

---
 .../0008_alter_productionstream_status.py     | 34 +++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 scipost_django/production/migrations/0008_alter_productionstream_status.py

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 000000000..0a3966213
--- /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,
+            ),
+        ),
+    ]
-- 
GitLab