diff options
author | lxf <sng@luxagraf.net> | 2022-01-06 10:01:13 -0500 |
---|---|---|
committer | lxf <sng@luxagraf.net> | 2022-01-06 10:01:13 -0500 |
commit | c2acb9c93081956725e33808764e35c61cc7b90b (patch) | |
tree | f1b9608d10cc20b6b99bff9a6e2c646804ab2133 /app/trading/migrations | |
parent | f33fa7a87769a444acbc388037c0c71b3b7fc36a (diff) |
trad: started on simpler forms for updates and added profit to table
Diffstat (limited to 'app/trading/migrations')
-rw-r--r-- | app/trading/migrations/0022_auto_20220104_1551.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app/trading/migrations/0022_auto_20220104_1551.py b/app/trading/migrations/0022_auto_20220104_1551.py new file mode 100644 index 0000000..f074f29 --- /dev/null +++ b/app/trading/migrations/0022_auto_20220104_1551.py @@ -0,0 +1,22 @@ +# Generated by Django 3.2.7 on 2022-01-04 15:51 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('trading', '0021_auto_20220104_1039'), + ] + + operations = [ + migrations.RenameModel( + old_name='LuxOptionContact', + new_name='LuxOptionContract', + ), + migrations.AlterField( + model_name='luxoptionpurchase', + name='status', + field=models.IntegerField(choices=[(0, 'Open'), (1, 'Closed')], default=0), + ), + ] |