summaryrefslogtreecommitdiff
path: root/app/trading/migrations/0012_alter_luxoptionstrade_call_put.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2021-07-20 21:49:09 -0400
committerluxagraf <sng@luxagraf.net>2021-07-20 21:49:09 -0400
commit4e64ac45ad91b79b9fc0cd80abab51fc50e8be76 (patch)
tree0f84543e0d7eb538dbd47ca45cd3b340704a5e7f /app/trading/migrations/0012_alter_luxoptionstrade_call_put.py
parent538481a01b39a73f1590cf9910b3c884270bd204 (diff)
trad: added options tracking and calculator
Diffstat (limited to 'app/trading/migrations/0012_alter_luxoptionstrade_call_put.py')
-rw-r--r--app/trading/migrations/0012_alter_luxoptionstrade_call_put.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/app/trading/migrations/0012_alter_luxoptionstrade_call_put.py b/app/trading/migrations/0012_alter_luxoptionstrade_call_put.py
new file mode 100644
index 0000000..c8068a9
--- /dev/null
+++ b/app/trading/migrations/0012_alter_luxoptionstrade_call_put.py
@@ -0,0 +1,18 @@
+# Generated by Django 3.2.5 on 2021-07-20 20:40
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('trading', '0011_auto_20210720_2039'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='luxoptionstrade',
+ name='call_put',
+ field=models.IntegerField(choices=[(0, 'Call'), (1, 'Put')], default=2),
+ ),
+ ]