mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
17 lines
382 B
Python
17 lines
382 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('api', '0004_alter_currency_currency'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='order',
|
|
name='payment_method',
|
|
field=models.CharField(blank=True, default='not specified', max_length=70),
|
|
),
|
|
]
|