mirror of https://github.com/itflow-org/itflow
Fix initial DB Structure was causing new installs to direct to a non existent page dashboard.php
This commit is contained in:
parent
94e56f6d68
commit
c43b22ddd5
4
db.sql
4
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
|
||||
|
|
|
|||
Loading…
Reference in New Issue