mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2025-08-27 05:41:15 +00:00
Initial commit
This commit is contained in:
18
wireguard/migrations/0002_peer_private_key.py
Normal file
18
wireguard/migrations/0002_peer_private_key.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 5.0.1 on 2024-02-14 00:32
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('wireguard', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='peer',
|
||||
name='private_key',
|
||||
field=models.CharField(blank=True, max_length=100, null=True),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user