mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2025-08-26 21:31:14 +00:00
Add peer group model
This commit is contained in:
19
user_manager/migrations/0004_useracl_peer_groups.py
Normal file
19
user_manager/migrations/0004_useracl_peer_groups.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# 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'),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user