blob: 55636deb8f84ea563782cf72d8a2f638b631da3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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')},
),
]
|