mirror of
https://github.com/wahyd4/links.git
synced 2026-08-09 05:06:16 +10:00
fix build
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 5.2.12 on 2026-04-16 04:07
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('routermon', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='routermonsettings',
|
||||
name='enabled',
|
||||
field=models.BooleanField(default=False),
|
||||
),
|
||||
]
|
||||
+1
-1
@@ -4,7 +4,7 @@ from django.db import models
|
||||
class RouterMonSettings(models.Model):
|
||||
"""Singleton (pk=1) — router syslog receiver configuration."""
|
||||
|
||||
enabled = models.BooleanField(default=True)
|
||||
enabled = models.BooleanField(default=False)
|
||||
syslog_port = models.IntegerField(
|
||||
default=5514,
|
||||
help_text=(
|
||||
|
||||
Reference in New Issue
Block a user