diff options
author | luxagraf <sng@luxagraf.net> | 2021-07-15 15:34:55 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2021-07-15 15:34:55 -0400 |
commit | b86864ae1e2c78adff3d982c7687124213bd878f (patch) | |
tree | 98a79f678c56bf38fe0c94accf18034ad6fafc84 /app/trading/models.py | |
parent | d771469e7b37c9de9ed93e156bc4615180c8d413 (diff) |
trad: added a field to track wanderer trades
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) |