mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2025-04-19 08:55:12 +00:00
20 lines
466 B
Python
20 lines
466 B
Python
|
# Generated by Django 5.1.5 on 2025-01-20 12:45
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('user_manager', '0003_authenticationtoken'),
|
||
|
('wireguard', '0023_peergroup'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='useracl',
|
||
|
name='peer_groups',
|
||
|
field=models.ManyToManyField(blank=True, to='wireguard.peergroup'),
|
||
|
),
|
||
|
]
|