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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
xmrauctions/sales/migrations/0004_auto_20200113_2127.py

24 lines
582 B
Python

# 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),
),
]