|
| 1 | +# Generated by Django 4.2.9 on 2024-07-31 14:23 |
| 2 | + |
| 3 | +from django.db import migrations, models |
| 4 | + |
| 5 | + |
| 6 | +class Migration(migrations.Migration): |
| 7 | + |
| 8 | + dependencies = [ |
| 9 | + ("sde_collections", "0056_alter_candidateurl_document_type_and_more"), |
| 10 | + ] |
| 11 | + |
| 12 | + operations = [ |
| 13 | + migrations.AlterField( |
| 14 | + model_name="collection", |
| 15 | + name="workflow_status", |
| 16 | + field=models.IntegerField( |
| 17 | + choices=[ |
| 18 | + (1, "Research in Progress"), |
| 19 | + (2, "Ready for Engineering"), |
| 20 | + (3, "Engineering in Progress"), |
| 21 | + (4, "Ready for Curation"), |
| 22 | + (5, "Curation in Progress"), |
| 23 | + (6, "Curated"), |
| 24 | + (7, "Quality Fixed"), |
| 25 | + (8, "Secret Deployment Started"), |
| 26 | + (9, "Secret Deployment Failed"), |
| 27 | + (10, "Ready for LRM Quality Check"), |
| 28 | + (11, "Ready for Quality Check"), |
| 29 | + (12, "QC: Failed"), |
| 30 | + (18, "QC: Minor Issues"), |
| 31 | + (13, "QC: Perfect"), |
| 32 | + (14, "Prod: Perfect"), |
| 33 | + (15, "Prod: Minor Issues"), |
| 34 | + (16, "Prod: Major Issues"), |
| 35 | + (17, "Code Merge Pending"), |
| 36 | + (19, "Delete from Prod"), |
| 37 | + ], |
| 38 | + default=1, |
| 39 | + ), |
| 40 | + ), |
| 41 | + migrations.AlterField( |
| 42 | + model_name="workflowhistory", |
| 43 | + name="old_status", |
| 44 | + field=models.IntegerField( |
| 45 | + choices=[ |
| 46 | + (1, "Research in Progress"), |
| 47 | + (2, "Ready for Engineering"), |
| 48 | + (3, "Engineering in Progress"), |
| 49 | + (4, "Ready for Curation"), |
| 50 | + (5, "Curation in Progress"), |
| 51 | + (6, "Curated"), |
| 52 | + (7, "Quality Fixed"), |
| 53 | + (8, "Secret Deployment Started"), |
| 54 | + (9, "Secret Deployment Failed"), |
| 55 | + (10, "Ready for LRM Quality Check"), |
| 56 | + (11, "Ready for Quality Check"), |
| 57 | + (12, "QC: Failed"), |
| 58 | + (18, "QC: Minor Issues"), |
| 59 | + (13, "QC: Perfect"), |
| 60 | + (14, "Prod: Perfect"), |
| 61 | + (15, "Prod: Minor Issues"), |
| 62 | + (16, "Prod: Major Issues"), |
| 63 | + (17, "Code Merge Pending"), |
| 64 | + (19, "Delete from Prod"), |
| 65 | + ], |
| 66 | + null=True, |
| 67 | + ), |
| 68 | + ), |
| 69 | + migrations.AlterField( |
| 70 | + model_name="workflowhistory", |
| 71 | + name="workflow_status", |
| 72 | + field=models.IntegerField( |
| 73 | + choices=[ |
| 74 | + (1, "Research in Progress"), |
| 75 | + (2, "Ready for Engineering"), |
| 76 | + (3, "Engineering in Progress"), |
| 77 | + (4, "Ready for Curation"), |
| 78 | + (5, "Curation in Progress"), |
| 79 | + (6, "Curated"), |
| 80 | + (7, "Quality Fixed"), |
| 81 | + (8, "Secret Deployment Started"), |
| 82 | + (9, "Secret Deployment Failed"), |
| 83 | + (10, "Ready for LRM Quality Check"), |
| 84 | + (11, "Ready for Quality Check"), |
| 85 | + (12, "QC: Failed"), |
| 86 | + (18, "QC: Minor Issues"), |
| 87 | + (13, "QC: Perfect"), |
| 88 | + (14, "Prod: Perfect"), |
| 89 | + (15, "Prod: Minor Issues"), |
| 90 | + (16, "Prod: Major Issues"), |
| 91 | + (17, "Code Merge Pending"), |
| 92 | + (19, "Delete from Prod"), |
| 93 | + ], |
| 94 | + default=1, |
| 95 | + ), |
| 96 | + ), |
| 97 | + ] |
0 commit comments