You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
582 B
Python
24 lines
582 B
Python
5 years ago
|
# Generated by Django 2.2.8 on 2020-01-13 21:27
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('sales', '0003_itemsale_sale_cancelled'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='itemsale',
|
||
|
name='network_fee_xmr',
|
||
|
field=models.FloatField(default=0.0),
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='itemsale',
|
||
|
name='seller_payout_transaction',
|
||
|
field=models.CharField(blank=True, max_length=150),
|
||
|
),
|
||
|
]
|