From c43b22ddd5319cf8d8a78fc0bbe752141fc6c117 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Tue, 22 Aug 2023 18:19:15 -0400 Subject: [PATCH] Fix initial DB Structure was causing new installs to direct to a non existent page dashboard.php --- db.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db.sql b/db.sql index c15a8236..37cc0b12 100644 --- a/db.sql +++ b/db.sql @@ -1161,7 +1161,7 @@ DROP TABLE IF EXISTS `settings`; CREATE TABLE `settings` ( `company_id` int(11) NOT NULL, `config_current_database_version` varchar(10) NOT NULL, - `config_start_page` varchar(200) DEFAULT 'dashboard.php', + `config_start_page` varchar(200) DEFAULT 'clients.php', `config_smtp_host` varchar(200) DEFAULT NULL, `config_smtp_port` int(5) DEFAULT NULL, `config_smtp_encryption` varchar(200) DEFAULT NULL, @@ -1691,4 +1691,4 @@ CREATE TABLE `vendors` ( /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2023-08-18 19:33:44 +-- Dump completed on 2023-08-22 18:18:38