v6.3.13.0

Changelog: https://roxy-wi.org/changelog#6_3_13
pull/364/head
Aidaho 2023-06-03 20:05:04 +03:00
parent 5120e0a200
commit b16ce1a02a
1 changed files with 2 additions and 2 deletions

View File

@ -433,11 +433,11 @@ class SMON(BaseModel):
ssl_expire_critical_alert = IntegerField(constraints=[SQL('DEFAULT 0')])
ssl_expire_date = CharField(null=True)
pd_channel_id = IntegerField(null=True)
check_type = CharField(constraints=[SQL('DEFAULT tcp')])
check_type = CharField(constraints=[SQL('DEFAULT "tcp"')])
class Meta:
table_name = 'smon'
constraints = [SQL('UNIQUE (ip, port, http, body)')]
constraints = [SQL('UNIQUE (name, port, http, body)')]
class Alerts(BaseModel):