Merge pull request #363 from wrongecho/services-certs

Add functionality to link certificates to services
This commit is contained in:
Johnny
2022-02-18 18:00:18 -05:00
committed by GitHub
6 changed files with 105 additions and 28 deletions

13
db.sql
View File

@@ -978,6 +978,19 @@ CREATE TABLE `service_assets` (
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `service_certificates`
--
DROP TABLE IF EXISTS `service_certificates`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `service_certificates` (
`service_id` int(11) NOT NULL,
`certificate_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `service_contacts`
--