mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2025-08-03 01:34:55 +02:00
Initial commit
This commit is contained in:
commit
ed55724808
2505 changed files with 1136655 additions and 0 deletions
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),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue