mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2025-04-19 08:55:12 +00:00
20 lines
448 B
Python
20 lines
448 B
Python
|
# 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),
|
||
|
),
|
||
|
]
|