From efdffa1a7442226a5c0a4400a2078d005441f311 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Sat, 6 Jan 2024 16:07:37 -0500 Subject: [PATCH] Forgot to do a DB Dump after DB Update well here it is --- db.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/db.sql b/db.sql index 3f8f6da8..47012483 100644 --- a/db.sql +++ b/db.sql @@ -1281,6 +1281,7 @@ CREATE TABLE `settings` ( `config_theme` varchar(200) DEFAULT 'blue', `config_telemetry` tinyint(1) DEFAULT 0, `config_timezone` varchar(200) NOT NULL DEFAULT 'America/New_York', + `config_destructive_deletes_enable` tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (`company_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; @@ -1752,4 +1753,4 @@ CREATE TABLE `vendors` ( /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2023-12-21 16:35:50 +-- Dump completed on 2024-01-06 16:07:08