blob: 1eccf8cd69c2bee9ec7ae9bf4379126628d16d6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Generated by Django 3.2.5 on 2021-07-20 20:47
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('trading', '0012_alter_luxoptionstrade_call_put'),
]
operations = [
migrations.AlterField(
model_name='luxoptionstrade',
name='fees',
field=models.FloatField(blank=True),
),
]
|