From c2acb9c93081956725e33808764e35c61cc7b90b Mon Sep 17 00:00:00 2001 From: lxf Date: Thu, 6 Jan 2022 10:01:13 -0500 Subject: trad: started on simpler forms for updates and added profit to table --- app/trading/migrations/0022_auto_20220104_1551.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 app/trading/migrations/0022_auto_20220104_1551.py (limited to 'app/trading/migrations') 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), + ), + ] -- cgit v1.2.3-70-g09d2