diff options
author | 2019-04-08 20:28:48 +0200 | |
---|---|---|
committer | 2019-04-08 20:28:48 +0200 | |
commit | 2a4e5e606520fca4649b2a7c40e73e8380e4798d (patch) | |
tree | b873d497f4a09cda0c9d04864b9c4994cf483477 /pydis_site/apps/api/models.py | |
parent | Minor formatting improvements. (diff) |
Add the `message` field.
Diffstat (limited to 'pydis_site/apps/api/models.py')
-rw-r--r-- | pydis_site/apps/api/models.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pydis_site/apps/api/models.py b/pydis_site/apps/api/models.py index 35b76c4c..b2499f8d 100644 --- a/pydis_site/apps/api/models.py +++ b/pydis_site/apps/api/models.py @@ -493,3 +493,6 @@ class LogEntry(ModelReprMixin, models.Model): line = models.PositiveSmallIntegerField( help_text="The line at which the log line was emitted." ) + message = models.TextField( + help_text="The textual content of the log line." + ) |