SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit bd82b0c7 authored by George Katsikas's avatar George Katsikas :goat:
Browse files

add migration for source files prod stream status

parent ba467356
No related branches found
No related tags found
1 merge request!52New Production page fixes and oversights
# 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,
),
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment