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