From 3721d11259f432fc605ee4d85051469df34ce832 Mon Sep 17 00:00:00 2001 From: Tarun Singh Date: Tue, 9 Nov 2021 18:53:00 -0500 Subject: [PATCH] changed table column names for more specifity --- db/patch-added-mqtt-monitor.sql | 4 ++-- src/pages/EditMonitor.vue | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/db/patch-added-mqtt-monitor.sql b/db/patch-added-mqtt-monitor.sql index a92b07468..744829b67 100644 --- a/db/patch-added-mqtt-monitor.sql +++ b/db/patch-added-mqtt-monitor.sql @@ -2,9 +2,9 @@ BEGIN TRANSACTION; ALTER TABLE monitor - ADD topic VARCHAR(50); + ADD mqtt_topic VARCHAR(50); ALTER TABLE monitor - ADD success_message VARCHAR(255); + ADD mqtt_success_message VARCHAR(255); COMMIT; diff --git a/src/pages/EditMonitor.vue b/src/pages/EditMonitor.vue index e823caf83..7d982072e 100644 --- a/src/pages/EditMonitor.vue +++ b/src/pages/EditMonitor.vue @@ -127,16 +127,16 @@
- - + +
{{ $t("topicExplanation") }}
- - + +
{{ $t("successMessageExplanation") }}