8da6a1e19c
Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
28 lines
798 B
Python
28 lines
798 B
Python
# Generated by Django 3.1 on 2020-08-08 19:53
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('uncloud_net', '0002_auto_20200801_2332'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='vpnnetwork',
|
|
name='extra_data',
|
|
field=models.JSONField(blank=True, editable=False, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='vpnnetworkreservation',
|
|
name='extra_data',
|
|
field=models.JSONField(blank=True, editable=False, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='vpnpool',
|
|
name='extra_data',
|
|
field=models.JSONField(blank=True, editable=False, null=True),
|
|
),
|
|
]
|