diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-04-26 15:52:50 +0200 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-04-26 15:56:38 +0200 | 
| commit | 8f33cc4c4b5f2e86fccbba180f660472a8be93cb (patch) | |
| tree | 07d26394fd350ab4588fb508809a4b6350fa84dc /archaeological_operations/models.py | |
| parent | ebab08c804c65ed5207abc166ffac8cce242dae8 (diff) | |
| download | Ishtar-8f33cc4c4b5f2e86fccbba180f660472a8be93cb.tar.bz2 Ishtar-8f33cc4c4b5f2e86fccbba180f660472a8be93cb.zip | |
🐛 Context record relations import: fix missing attachment to imports (refs #5923)
Diffstat (limited to 'archaeological_operations/models.py')
| -rw-r--r-- | archaeological_operations/models.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index 8fbba74be..cc5c53b45 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -2377,7 +2377,7 @@ class OperationRecordRelationManager(models.Manager):          ) -class RecordRelations(GeneralRecordRelations, models.Model): +class RecordRelations(GeneralRecordRelations):      MAIN_ATTR = "left_record"      left_record = models.ForeignKey(          Operation, related_name="right_relations", on_delete=models.CASCADE | 
