From cc9f425fb5fa82ac26db4f14c4c484fb7fd85cf6 Mon Sep 17 00:00:00 2001 From: Philip Sargent Date: Tue, 5 Sep 2023 23:14:48 +0300 Subject: Ongoing work to remove SurvexDirectory as a concept --- core/models/survex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/models/survex.py') diff --git a/core/models/survex.py b/core/models/survex.py index 7c0f38e..835d31d 100644 --- a/core/models/survex.py +++ b/core/models/survex.py @@ -17,7 +17,7 @@ class SurvexDirectory(models.Model): all relate to the same Cave """ path = models.CharField(max_length=200) - cave = models.ForeignKey("Cave", blank=True, null=True, on_delete=models.SET_NULL) + # cave = models.ForeignKey("Cave", blank=True, null=True, on_delete=models.SET_NULL) # apparently NEVER USED primarysurvexfile = models.ForeignKey( "SurvexFile", related_name="primarysurvexfile", blank=True, null=True, on_delete=models.SET_NULL ) -- cgit v1.2.3