Added Telemetry settings option

This commit is contained in:
johnnyq
2023-01-24 19:27:58 -05:00
parent 88ca23e5c0
commit a854baaf61
8 changed files with 79 additions and 11 deletions

3
db.sql
View File

@@ -1080,6 +1080,7 @@ CREATE TABLE `settings` (
`config_module_enable_accounting` tinyint(1) NOT NULL DEFAULT 1,
`config_module_enable_ticketing` tinyint(1) NOT NULL DEFAULT 1,
`config_theme` varchar(200) DEFAULT 'blue',
`config_telemetry` tinyint(1) DEFAULT 0,
PRIMARY KEY (`company_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -1518,4 +1519,4 @@ CREATE TABLE `vendors` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2023-01-24 16:19:14
-- Dump completed on 2023-01-24 19:27:29