Fix initial DB Structure was causing new installs to direct to a non existent page dashboard.php

This commit is contained in:
johnnyq 2023-08-22 18:19:15 -04:00
parent 94e56f6d68
commit c43b22ddd5
1 changed files with 2 additions and 2 deletions

4
db.sql
View File

@ -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