diff options
Diffstat (limited to 'app/trading/models.py')
-rw-r--r-- | app/trading/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/trading/models.py b/app/trading/models.py index a8c18a8..edfc0c2 100644 --- a/app/trading/models.py +++ b/app/trading/models.py @@ -102,6 +102,7 @@ class LuxTrade(models.Model): ) status = models.IntegerField(choices=STATUS, default=2) notes = models.TextField(null=True, blank=True) + is_wanderer = models.BooleanField(default=True) def __str__(self): return str(self.symbol) |