diff options
author | lxf <sng@luxagraf.net> | 2022-01-04 10:39:18 -0500 |
---|---|---|
committer | lxf <sng@luxagraf.net> | 2022-01-04 10:39:18 -0500 |
commit | 84cbab3bdc9d1b59922e755fae3435ce0a5f2dbe (patch) | |
tree | 50c029466829397bed93d237833c56668fa5107f | |
parent | 772378e710837a383987f96f6fccb39bcbebaeab (diff) |
trad: rolled in latest db changes
-rw-r--r-- | app/trading/migrations/0021_auto_20220104_1039.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/app/trading/migrations/0021_auto_20220104_1039.py b/app/trading/migrations/0021_auto_20220104_1039.py new file mode 100644 index 0000000..00effd6 --- /dev/null +++ b/app/trading/migrations/0021_auto_20220104_1039.py @@ -0,0 +1,23 @@ +# Generated by Django 3.2.7 on 2022-01-04 10:39 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('trading', '0020_auto_20220103_1517'), + ] + + operations = [ + migrations.AlterField( + model_name='luxoptioncontact', + name='call_put', + field=models.IntegerField(choices=[(0, 'Calls'), (1, 'Puts')], default=0), + ), + migrations.AlterField( + model_name='luxoptionpurchase', + name='close_date', + field=models.DateTimeField(blank=True, null=True), + ), + ] |