diff options
Diffstat (limited to 'core/models/caves.py')
-rw-r--r-- | core/models/caves.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/models/caves.py b/core/models/caves.py index a18a996..1ed1605 100644 --- a/core/models/caves.py +++ b/core/models/caves.py @@ -28,6 +28,11 @@ todo = """ these are not just a single field on the Model. Do we ever need more than one slug per cave or entrance? Surely that would break everything?? +- Can we rewrite things to eliminate the CaveSlug and EntranceSlug Classes and objects? Surely + foreign keys work fine ?! + +- Why do we have CaveAndEntrance objects ? Surely entranceletter belong son the Entrance object? + - Restore constraint: unique_together = (("area", "kataster_number"), ("area", "unofficial_number")) """ |