Add documents

This commit is contained in:
Marcus Hill
2022-01-24 20:51:29 +00:00
parent 75757bf0df
commit b63169c09d
2 changed files with 26 additions and 5 deletions

10
db.sql
View File

@@ -969,6 +969,16 @@ CREATE TABLE IF NOT EXISTS `service_contacts` (
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Table structure for table `service_documents`
--
DROP TABLE IF EXISTS `service_documents`;
CREATE TABLE IF NOT EXISTS `service_documents` (
`service_id` int(11) NOT NULL,
`document_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Table structure for table `service_domains`
--