mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2026-04-04 14:36:18 +00:00
Add export_configs management command for WireGuard and Caddy configurations
This commit is contained in:
20
dns/migrations/0005_dnsfilterlist_list_format.py
Normal file
20
dns/migrations/0005_dnsfilterlist_list_format.py
Normal file
@@ -0,0 +1,20 @@
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('dns', '0004_dnsfilterlist_recommended'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='dnsfilterlist',
|
||||
name='list_format',
|
||||
field=models.CharField(
|
||||
choices=[('', 'Unknown'), ('hosts', 'Hosts'), ('dnsmasq', 'Dnsmasq'), ('unsupported', 'Unsupported')],
|
||||
default='',
|
||||
max_length=15,
|
||||
),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user