mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2025-08-26 21:31:14 +00:00
create and manage peer groups
This commit is contained in:
19
wireguard/migrations/0024_alter_peergroup_uuid.py
Normal file
19
wireguard/migrations/0024_alter_peergroup_uuid.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# Generated by Django 5.1.5 on 2025-01-20 13:53
|
||||
|
||||
import uuid
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('wireguard', '0023_peergroup'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='peergroup',
|
||||
name='uuid',
|
||||
field=models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user