From 881cec1c5459bed0bd84824aa0a8820bde751a95 Mon Sep 17 00:00:00 2001 From: phil Date: Mon, 9 Dec 2024 11:16:10 -0500 Subject: [PATCH] sql update --- meshtastic.sql | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/meshtastic.sql b/meshtastic.sql index aab1222..9db6d7d 100644 --- a/meshtastic.sql +++ b/meshtastic.sql @@ -1,4 +1,3 @@ -/*M!999999\- enable the sandbox mode */ -- MariaDB dump 10.19 Distrib 10.11.10-MariaDB, for Linux (x86_64) -- -- Host: 192.168.2.42 Database: meshtastic @@ -39,7 +38,8 @@ CREATE TABLE `neighborinfo` ( `timestamp` bigint(10) DEFAULT NULL, `to` bigint(10) DEFAULT NULL, `type` varchar(100) DEFAULT NULL, - `hop_start` int(2) DEFAULT NULL + `hop_start` int(2) DEFAULT NULL, + `payload_role` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; @@ -65,7 +65,8 @@ CREATE TABLE `nodeinfo` ( `timestamp` bigint(10) DEFAULT NULL, `to` bigint(10) DEFAULT NULL, `type` varchar(100) DEFAULT NULL, - `hop_start` int(2) DEFAULT NULL + `hop_start` int(2) DEFAULT NULL, + `payload_role` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; @@ -96,7 +97,8 @@ CREATE TABLE `position` ( `timestamp` bigint(10) DEFAULT NULL, `to` bigint(10) DEFAULT NULL, `type` varchar(100) DEFAULT NULL, - `hop_start` int(2) DEFAULT NULL + `hop_start` int(2) DEFAULT NULL, + `payload_role` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; @@ -128,7 +130,8 @@ CREATE TABLE `telemetry` ( `timestamp` bigint(10) DEFAULT NULL, `to` bigint(10) DEFAULT NULL, `type` varchar(100) DEFAULT NULL, - `hop_start` int(2) DEFAULT NULL + `hop_start` int(2) DEFAULT NULL, + `payload_role` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; @@ -151,7 +154,8 @@ CREATE TABLE `text` ( `timestamp` bigint(10) DEFAULT NULL, `to` bigint(10) DEFAULT NULL, `type` varchar(100) DEFAULT NULL, - `hop_start` int(2) DEFAULT NULL + `hop_start` int(2) DEFAULT NULL, + `payload_role` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; @@ -174,7 +178,8 @@ CREATE TABLE `traceroute` ( `timestamp` bigint(10) DEFAULT NULL, `to` bigint(10) DEFAULT NULL, `type` varchar(100) DEFAULT NULL, - `hop_start` int(2) DEFAULT NULL + `hop_start` int(2) DEFAULT NULL, + `payload_role` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; @@ -187,4 +192,4 @@ CREATE TABLE `traceroute` ( /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2024-12-09 10:13:09 +-- Dump completed on 2024-12-09 11:14:56