mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
17 lines
345 B
Python
17 lines
345 B
Python
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('api', '0006_alter_currency_currency'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='lnpayment',
|
||
|
name='in_flight',
|
||
|
field=models.BooleanField(default=False),
|
||
|
),
|
||
|
]
|