diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2020-03-04 19:51:14 +0000 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2020-03-04 19:51:14 +0000 |
commit | 11834a2580344b90126f3c25b89f18104b3d3ed9 (patch) | |
tree | b4906bfe03de66758e7d878b0210cfed58a8fa6f /ctrack/caf/models.py | |
parent | 4c3a0d5808054456f5a90c13d8af62f334e7e031 (diff) |
removed owner field from CAF - daring!
Diffstat (limited to 'ctrack/caf/models.py')
-rw-r--r-- | ctrack/caf/models.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ctrack/caf/models.py b/ctrack/caf/models.py index 0fbfcd8..b488962 100644 --- a/ctrack/caf/models.py +++ b/ctrack/caf/models.py @@ -60,7 +60,6 @@ class ApplicableSystem(models.Model): class CAF(models.Model): - owner = models.ForeignKey(Organisation, on_delete=models.CASCADE) quality_grading = models.ForeignKey(Grading, on_delete=models.CASCADE, blank=True, null=True, related_name="quality_grading") confidence_grading = models.ForeignKey(Grading, on_delete=models.CASCADE, blank=True, null=True, |