Added domain to certificates DB Structure Updated

This commit is contained in:
johnny@pittpc.com
2021-01-27 14:22:12 -05:00
parent b9b72b96fd
commit eb7d27aa4d
5 changed files with 30 additions and 4 deletions

3
db.sql
View File

@@ -133,6 +133,7 @@ DROP TABLE IF EXISTS `certificates`;
CREATE TABLE `certificates` (
`certificate_id` int(11) NOT NULL AUTO_INCREMENT,
`certificate_name` varchar(200) NOT NULL,
`certificate_domain` varchar(200) DEFAULT NULL,
`certificate_issued_by` varchar(200) NOT NULL,
`certificate_expire` date DEFAULT NULL,
`certificate_notes` text DEFAULT NULL,
@@ -920,4 +921,4 @@ CREATE TABLE `vendors` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2021-01-26 19:16:25
-- Dump completed on 2021-01-27 14:21:51