18 lines
459 B
Python
18 lines
459 B
Python
|
# Generated by Django 3.1 on 2020-12-13 17:34
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('uncloud_net', '0003_wireguardvpnpool_wg_name'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddConstraint(
|
||
|
model_name='wireguardvpnpool',
|
||
|
constraint=models.UniqueConstraint(fields=('wg_name', 'vpn_server_hostname'), name='unique_interface_name_per_host'),
|
||
|
),
|
||
|
]
|