mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
22 lines
585 B
Python
22 lines
585 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('api', '0010_lnpayment_failure_reason'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='profile',
|
|
name='encrypted_private_key',
|
|
field=models.TextField(blank=True, default=None, max_length=999, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='profile',
|
|
name='public_key',
|
|
field=models.TextField(blank=True, default=None, max_length=999, null=True),
|
|
),
|
|
]
|