summaryrefslogtreecommitdiff
path: root/app/trading/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/trading/models.py')
-rw-r--r--app/trading/models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/trading/models.py b/app/trading/models.py
index 0b79c9e..a8c18a8 100644
--- a/app/trading/models.py
+++ b/app/trading/models.py
@@ -101,6 +101,7 @@ class LuxTrade(models.Model):
(2, 'Watching'),
)
status = models.IntegerField(choices=STATUS, default=2)
+ notes = models.TextField(null=True, blank=True)
def __str__(self):
return str(self.symbol)