Added technician config mutation #127

This commit is contained in:
2023-08-07 14:31:54 +02:00
parent 05ddfb3de3
commit f02acd7f94
9 changed files with 63 additions and 36 deletions

View File

@@ -74,6 +74,6 @@ class TechnicianIdConfig(TableABC):
return str(
f"""
DELETE FROM `CFG_TechnicianIds`
WHERE `Id` = {self._id};
WHERE `TechnicianId` = {self._technician_id};
"""
)

View File

@@ -74,6 +74,6 @@ class TechnicianPingUrlConfig(TableABC):
return str(
f"""
DELETE FROM `CFG_TechnicianPingUrls`
WHERE `Id` = {self._id};
WHERE `URL` = {self._ping_url};
"""
)