Introduced Custom Extenal Links on main side Nav DB Structure updated Thanks @aftechno

This commit is contained in:
johnnyq
2021-08-19 12:25:32 -04:00
parent bf69d02cba
commit ef7bfd3c90
7 changed files with 361 additions and 2 deletions

21
db.sql
View File

@@ -266,6 +266,25 @@ CREATE TABLE `contracts` (
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `custom_links`
--
DROP TABLE IF EXISTS `custom_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `custom_links` (
`custom_link_id` int(11) NOT NULL AUTO_INCREMENT,
`custom_link_name` varchar(250) NOT NULL,
`custom_link_icon` varchar(100) DEFAULT NULL,
`custom_link_url` varchar(250) NOT NULL,
`custom_link_order` int(11) DEFAULT NULL,
`custom_link_created_at` datetime NOT NULL,
`company_id` int(11) NOT NULL,
PRIMARY KEY (`custom_link_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `documents`
--
@@ -1011,4 +1030,4 @@ CREATE TABLE `vendors` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2021-08-18 22:52:05
-- Dump completed on 2021-08-19 12:24:33