mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
21 lines
455 B
Python
21 lines
455 B
Python
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('api', '0031_auto_20230425_1211'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.RemoveField(
|
||
|
model_name='order',
|
||
|
name='bondless_taker',
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='order',
|
||
|
name='reverted_fiat_sent',
|
||
|
field=models.BooleanField(default=False),
|
||
|
),
|
||
|
]
|