diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2021-04-12 01:28:54 +0100 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2021-04-12 01:28:54 +0100 |
commit | 5024abc812b20dfcf16823dcc20992763afb6681 (patch) | |
tree | 34fb28e7634fe546713cb303dcbfd496efc54d6e /core/models.py | |
parent | dbd9b1a0958e11744fc5653181db8d8f7e5a2fb3 (diff) | |
download | troggle-5024abc812b20dfcf16823dcc20992763afb6681.tar.gz troggle-5024abc812b20dfcf16823dcc20992763afb6681.tar.bz2 troggle-5024abc812b20dfcf16823dcc20992763afb6681.zip |
add url field to DataIssue
Diffstat (limited to 'core/models.py')
-rw-r--r-- | core/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/models.py b/core/models.py index cd8db02..8d2d658 100644 --- a/core/models.py +++ b/core/models.py @@ -93,6 +93,7 @@ class DataIssue(TroggleModel): date = models.DateTimeField(auto_now_add=True, blank=True) parser = models.CharField(max_length=50, blank=True, null=True) message = models.CharField(max_length=400, blank=True, null=True) + url = models.CharField(max_length=300, blank=True, null=True) # link to offending object class Meta: ordering = ['date'] |