blob: f074f292a3b544b1d8a2d944990ea6137dcdb228 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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),
),
]
|