mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 02:44:53 +00:00
Introduced Custom Extenal Links on main side Nav DB Structure updated Thanks @aftechno
This commit is contained in:
21
db.sql
21
db.sql
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user