diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-11-18 14:17:50 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-11-18 14:17:50 +0000 |
commit | 7c7c0812e8605919943433b32be8d11defe9745f (patch) | |
tree | 5e17a7c401398ce8c25e47e789446e1579e494a5 /core/models/caves.py | |
parent | 7a61bc47eae0568eb32b5529e4ca9c59da5150e6 (diff) | |
download | troggle-7c7c0812e8605919943433b32be8d11defe9745f.tar.gz troggle-7c7c0812e8605919943433b32be8d11defe9745f.tar.bz2 troggle-7c7c0812e8605919943433b32be8d11defe9745f.zip |
removing unused fields
Diffstat (limited to 'core/models/caves.py')
-rw-r--r-- | core/models/caves.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/models/caves.py b/core/models/caves.py index 72a532b..3193f2b 100644 --- a/core/models/caves.py +++ b/core/models/caves.py @@ -243,7 +243,7 @@ class Entrance(TroggleModel): lat_wgs84 = models.TextField(blank=True, null=True) # manually entered not calculated location_description = models.TextField(blank=True, null=True) long_wgs84 = models.TextField(blank=True, null=True) # manually entered not calculated - map_description = models.TextField(blank=True, null=True) + # map_description = models.TextField(blank=True, null=True) marking = models.CharField(max_length=2, choices=MARKING_CHOICES, default="?") marking_comment = models.TextField(blank=True, null=True) name = models.CharField(max_length=100, blank=True, null=True) |