diff options
author | luxagraf <sng@luxagraf.net> | 2023-07-28 13:43:36 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-07-28 13:43:36 -0500 |
commit | a30c790edea652494e7481f6798047a3bc1fd4ea (patch) | |
tree | b0936860abd6767716f56c68e305d8f5e0e38bd4 /app/trading | |
parent | 9a620cf42bf1fe6977e378bd834b41ff4a593dde (diff) |
added a backup of old pages that are no longer live
Diffstat (limited to 'app/trading')
-rw-r--r-- | app/trading/migrations/0023_alter_luxoptionpurchase_options.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/trading/migrations/0023_alter_luxoptionpurchase_options.py b/app/trading/migrations/0023_alter_luxoptionpurchase_options.py new file mode 100644 index 0000000..55636de --- /dev/null +++ b/app/trading/migrations/0023_alter_luxoptionpurchase_options.py @@ -0,0 +1,17 @@ +# Generated by Django 4.2.1 on 2023-05-23 15:25 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('trading', '0022_auto_20220104_1551'), + ] + + operations = [ + migrations.AlterModelOptions( + name='luxoptionpurchase', + options={'get_latest_by': 'open_date', 'ordering': ('-open_date', 'status')}, + ), + ] |