Switch Out Fetch for a Sync Icon button to fetch Certificate Data, also updated the field certificate_public_key to a text field instead of varchar as it was causing a crash with large pub keys

This commit is contained in:
johnnyq
2022-01-18 16:19:27 -05:00
parent f77df06004
commit a5b199a586
3 changed files with 8 additions and 4 deletions

4
db.sql
View File

@@ -186,7 +186,7 @@ CREATE TABLE `certificates` (
`certificate_domain` varchar(200) DEFAULT NULL,
`certificate_issued_by` varchar(200) NOT NULL,
`certificate_expire` date DEFAULT NULL,
`certificate_public_key` varchar(1500) DEFAULT NULL,
`certificate_public_key` text DEFAULT NULL,
`certificate_notes` text DEFAULT NULL,
`certificate_created_at` datetime NOT NULL,
`certificate_updated_at` datetime DEFAULT NULL,
@@ -1217,4 +1217,4 @@ CREATE TABLE `vendors` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2022-01-16 15:27:33
-- Dump completed on 2022-01-18 16:18:01