diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2021-05-04 15:43:10 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2021-05-04 15:43:10 +0100 |
commit | 6d341a3cfe7fadd490400baf8273be9c29640d4c (patch) | |
tree | 8d1b936b88f07f48b7ece434c8f9b0bfde94c565 | |
parent | 1d9d96f467b6f544326b87e1112326b6162b3fe1 (diff) | |
download | troggle-6d341a3cfe7fadd490400baf8273be9c29640d4c.tar.gz troggle-6d341a3cfe7fadd490400baf8273be9c29640d4c.tar.bz2 troggle-6d341a3cfe7fadd490400baf8273be9c29640d4c.zip |
removed field from model
-rw-r--r-- | core/models/survex.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/models/survex.py b/core/models/survex.py index 9d2b17e..50173f4 100644 --- a/core/models/survex.py +++ b/core/models/survex.py @@ -208,7 +208,6 @@ class SingleScan(models.Model): class DrawingFile(models.Model): dwgpath = models.CharField(max_length=200) dwgname = models.CharField(max_length=200) - bfontcolours = models.BooleanField(default=False) # UNUSED now, can be deleted manywallets = models.ManyToManyField("Wallet") # implicitly links via folders to scans to SVX files scans = models.ManyToManyField("SingleScan") # implicitly links via scans to SVX files dwgcontains = models.ManyToManyField("DrawingFile") # case when its a frame type |