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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/trading/models.py b/app/trading/models.py
index 212d196..720b834 100644
--- a/app/trading/models.py
+++ b/app/trading/models.py
@@ -214,7 +214,7 @@ class LuxOptionPurchase(models.Model):
(0, 'Open'),
(1, 'Closed'),
)
- status = models.IntegerField(choices=STATUS, default=1)
+ status = models.IntegerField(choices=STATUS, default=0)
class Meta:
ordering = ('-open_date',)