sql database update
This commit is contained in:
parent
0498770a49
commit
bc25a310be
@ -1,8 +1,9 @@
|
|||||||
-- MariaDB dump 10.19 Distrib 10.5.23-MariaDB, for debian-linux-gnueabihf (armv8l)
|
/*M!999999\- enable the sandbox mode */
|
||||||
|
-- MariaDB dump 10.19 Distrib 10.11.10-MariaDB, for Linux (x86_64)
|
||||||
--
|
--
|
||||||
-- Host: localhost Database: meshtastic
|
-- Host: 192.168.2.42 Database: meshtastic
|
||||||
-- ------------------------------------------------------
|
-- ------------------------------------------------------
|
||||||
-- Server version 10.5.23-MariaDB-0+deb11u1
|
-- Server version 10.11.9-MariaDB
|
||||||
|
|
||||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||||
@ -37,19 +38,11 @@ CREATE TABLE `neighborinfo` (
|
|||||||
`snr` float DEFAULT NULL,
|
`snr` float DEFAULT NULL,
|
||||||
`timestamp` bigint(10) DEFAULT NULL,
|
`timestamp` bigint(10) DEFAULT NULL,
|
||||||
`to` bigint(10) DEFAULT NULL,
|
`to` bigint(10) DEFAULT NULL,
|
||||||
`type` varchar(100) DEFAULT NULL
|
`type` varchar(100) DEFAULT NULL,
|
||||||
|
`hop_start` int(2) DEFAULT NULL
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
--
|
|
||||||
-- Dumping data for table `neighborinfo`
|
|
||||||
--
|
|
||||||
|
|
||||||
LOCK TABLES `neighborinfo` WRITE;
|
|
||||||
/*!40000 ALTER TABLE `neighborinfo` DISABLE KEYS */;
|
|
||||||
/*!40000 ALTER TABLE `neighborinfo` ENABLE KEYS */;
|
|
||||||
UNLOCK TABLES;
|
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `nodeinfo`
|
-- Table structure for table `nodeinfo`
|
||||||
--
|
--
|
||||||
@ -71,19 +64,11 @@ CREATE TABLE `nodeinfo` (
|
|||||||
`snr` float DEFAULT NULL,
|
`snr` float DEFAULT NULL,
|
||||||
`timestamp` bigint(10) DEFAULT NULL,
|
`timestamp` bigint(10) DEFAULT NULL,
|
||||||
`to` bigint(10) DEFAULT NULL,
|
`to` bigint(10) DEFAULT NULL,
|
||||||
`type` varchar(100) DEFAULT NULL
|
`type` varchar(100) DEFAULT NULL,
|
||||||
|
`hop_start` int(2) DEFAULT NULL
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
--
|
|
||||||
-- Dumping data for table `nodeinfo`
|
|
||||||
--
|
|
||||||
|
|
||||||
LOCK TABLES `nodeinfo` WRITE;
|
|
||||||
/*!40000 ALTER TABLE `nodeinfo` DISABLE KEYS */;
|
|
||||||
/*!40000 ALTER TABLE `nodeinfo` ENABLE KEYS */;
|
|
||||||
UNLOCK TABLES;
|
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `position`
|
-- Table structure for table `position`
|
||||||
--
|
--
|
||||||
@ -110,19 +95,11 @@ CREATE TABLE `position` (
|
|||||||
`snr` float DEFAULT NULL,
|
`snr` float DEFAULT NULL,
|
||||||
`timestamp` bigint(10) DEFAULT NULL,
|
`timestamp` bigint(10) DEFAULT NULL,
|
||||||
`to` bigint(10) DEFAULT NULL,
|
`to` bigint(10) DEFAULT NULL,
|
||||||
`type` varchar(100) DEFAULT NULL
|
`type` varchar(100) DEFAULT NULL,
|
||||||
|
`hop_start` int(2) DEFAULT NULL
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
--
|
|
||||||
-- Dumping data for table `position`
|
|
||||||
--
|
|
||||||
|
|
||||||
LOCK TABLES `position` WRITE;
|
|
||||||
/*!40000 ALTER TABLE `position` DISABLE KEYS */;
|
|
||||||
/*!40000 ALTER TABLE `position` ENABLE KEYS */;
|
|
||||||
UNLOCK TABLES;
|
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `telemetry`
|
-- Table structure for table `telemetry`
|
||||||
--
|
--
|
||||||
@ -150,19 +127,11 @@ CREATE TABLE `telemetry` (
|
|||||||
`snr` float DEFAULT NULL,
|
`snr` float DEFAULT NULL,
|
||||||
`timestamp` bigint(10) DEFAULT NULL,
|
`timestamp` bigint(10) DEFAULT NULL,
|
||||||
`to` bigint(10) DEFAULT NULL,
|
`to` bigint(10) DEFAULT NULL,
|
||||||
`type` varchar(100) DEFAULT NULL
|
`type` varchar(100) DEFAULT NULL,
|
||||||
|
`hop_start` int(2) DEFAULT NULL
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
--
|
|
||||||
-- Dumping data for table `telemetry`
|
|
||||||
--
|
|
||||||
|
|
||||||
LOCK TABLES `telemetry` WRITE;
|
|
||||||
/*!40000 ALTER TABLE `telemetry` DISABLE KEYS */;
|
|
||||||
/*!40000 ALTER TABLE `telemetry` ENABLE KEYS */;
|
|
||||||
UNLOCK TABLES;
|
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `text`
|
-- Table structure for table `text`
|
||||||
--
|
--
|
||||||
@ -181,19 +150,11 @@ CREATE TABLE `text` (
|
|||||||
`snr` float DEFAULT NULL,
|
`snr` float DEFAULT NULL,
|
||||||
`timestamp` bigint(10) DEFAULT NULL,
|
`timestamp` bigint(10) DEFAULT NULL,
|
||||||
`to` bigint(10) DEFAULT NULL,
|
`to` bigint(10) DEFAULT NULL,
|
||||||
`type` varchar(100) DEFAULT NULL
|
`type` varchar(100) DEFAULT NULL,
|
||||||
|
`hop_start` int(2) DEFAULT NULL
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
--
|
|
||||||
-- Dumping data for table `text`
|
|
||||||
--
|
|
||||||
|
|
||||||
LOCK TABLES `text` WRITE;
|
|
||||||
/*!40000 ALTER TABLE `text` DISABLE KEYS */;
|
|
||||||
/*!40000 ALTER TABLE `text` ENABLE KEYS */;
|
|
||||||
UNLOCK TABLES;
|
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `traceroute`
|
-- Table structure for table `traceroute`
|
||||||
--
|
--
|
||||||
@ -212,18 +173,10 @@ CREATE TABLE `traceroute` (
|
|||||||
`snr` float DEFAULT NULL,
|
`snr` float DEFAULT NULL,
|
||||||
`timestamp` bigint(10) DEFAULT NULL,
|
`timestamp` bigint(10) DEFAULT NULL,
|
||||||
`to` bigint(10) DEFAULT NULL,
|
`to` bigint(10) DEFAULT NULL,
|
||||||
`type` varchar(100) DEFAULT NULL
|
`type` varchar(100) DEFAULT NULL,
|
||||||
|
`hop_start` int(2) DEFAULT NULL
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||||
|
|
||||||
--
|
|
||||||
-- Dumping data for table `traceroute`
|
|
||||||
--
|
|
||||||
|
|
||||||
LOCK TABLES `traceroute` WRITE;
|
|
||||||
/*!40000 ALTER TABLE `traceroute` DISABLE KEYS */;
|
|
||||||
/*!40000 ALTER TABLE `traceroute` ENABLE KEYS */;
|
|
||||||
UNLOCK TABLES;
|
|
||||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||||
|
|
||||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||||
@ -234,4 +187,4 @@ UNLOCK TABLES;
|
|||||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||||
|
|
||||||
-- Dump completed on 2024-05-07 13:16:22
|
-- Dump completed on 2024-12-09 10:13:09
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user