mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 02:44:53 +00:00
Add functionality to link certificates to services
This commit is contained in:
13
db.sql
13
db.sql
@@ -942,6 +942,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`
|
||||
--
|
||||
|
||||
Reference in New Issue
Block a user