From e0ac09d5ecc783902a341123fcdcf9e4112aec5d Mon Sep 17 00:00:00 2001 From: Philip Sargent Date: Wed, 12 Oct 2022 23:12:55 +0300 Subject: add 'lastvisit' field to entrances, for the date --- core/models/caves.py | 1 + 1 file changed, 1 insertion(+) (limited to 'core/models/caves.py') diff --git a/core/models/caves.py b/core/models/caves.py index 016f92e..972d766 100644 --- a/core/models/caves.py +++ b/core/models/caves.py @@ -274,6 +274,7 @@ class Entrance(TroggleModel): explorers = models.TextField(blank=True,null=True) map_description = models.TextField(blank=True,null=True) location_description = models.TextField(blank=True,null=True) + lastvisit = models.TextField(blank=True,null=True) approach = models.TextField(blank=True,null=True) underground_description = models.TextField(blank=True,null=True) photo = models.TextField(blank=True,null=True) -- cgit v1.2.3