diff options
author | luxagraf <sng@luxagraf.net> | 2021-07-14 09:31:15 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2021-07-14 09:31:15 -0400 |
commit | 39086b58106ff6181d029e0ef845593605821873 (patch) | |
tree | b6652d1b74c1187eafbd0fbd74a3f00f4f1c9c58 /app/trading/migrations/0007_alter_luxtrade_status.py | |
parent | c2c0421207694aa5eb148f05a57440716ae2dc8d (diff) |
trading: added trading to toolset
Diffstat (limited to 'app/trading/migrations/0007_alter_luxtrade_status.py')
-rw-r--r-- | app/trading/migrations/0007_alter_luxtrade_status.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app/trading/migrations/0007_alter_luxtrade_status.py b/app/trading/migrations/0007_alter_luxtrade_status.py new file mode 100644 index 0000000..0566b17 --- /dev/null +++ b/app/trading/migrations/0007_alter_luxtrade_status.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.4 on 2021-07-14 09:25 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('trading', '0006_luxtrade_close_price'), + ] + + operations = [ + migrations.AlterField( + model_name='luxtrade', + name='status', + field=models.IntegerField(choices=[(0, 'Open'), (1, 'Closed'), (2, 'Watching')], default=2), + ), + ] |