diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-02-21 17:06:53 +0100 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-02-24 18:09:08 +0100 |
| commit | bc6cf94def73926e6f6bb986d61e5861a17584e2 (patch) | |
| tree | ba4a7438cd6594c02938ad3211d523c6dd28a79f /archaeological_finds/migrations/0137_data_migration_treatmentinputstatus.json | |
| parent | 1b72554283f5c9e0644262a3f182409376870991 (diff) | |
| download | Ishtar-bc6cf94def73926e6f6bb986d61e5861a17584e2.tar.bz2 Ishtar-bc6cf94def73926e6f6bb986d61e5861a17584e2.zip | |
✨ treatment state refactoring -> distinct input status and treatment status (refs #6182) - treatments: search criteria
Diffstat (limited to 'archaeological_finds/migrations/0137_data_migration_treatmentinputstatus.json')
| -rw-r--r-- | archaeological_finds/migrations/0137_data_migration_treatmentinputstatus.json | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/archaeological_finds/migrations/0137_data_migration_treatmentinputstatus.json b/archaeological_finds/migrations/0137_data_migration_treatmentinputstatus.json new file mode 100644 index 000000000..100dee461 --- /dev/null +++ b/archaeological_finds/migrations/0137_data_migration_treatmentinputstatus.json @@ -0,0 +1,24 @@ +[ +{ + "model": "archaeological_finds.treatmentinputstatus", + "fields": { + "label": "Brouillon", + "txt_idx": "draft", + "comment": "", + "available": true, + "order": 10, + "executed": false + } +}, +{ + "model": "archaeological_finds.treatmentinputstatus", + "fields": { + "label": "Valid\u00e9", + "txt_idx": "validated", + "comment": "", + "available": true, + "order": 20, + "executed": true + } +} +] |
